From 28691c29e93fbc4fdb5ae4866287282840fba021 Mon Sep 17 00:00:00 2001 From: randomdan Date: Fri, 19 Sep 2014 23:52:30 +0000 Subject: First bash at a slicer ice proxy for TMDb and an untested instantiation in p2pvr's core adapter --- libtmdb/Jamfile.jam | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 libtmdb/Jamfile.jam (limited to 'libtmdb/Jamfile.jam') diff --git a/libtmdb/Jamfile.jam b/libtmdb/Jamfile.jam new file mode 100644 index 0000000..2e51377 --- /dev/null +++ b/libtmdb/Jamfile.jam @@ -0,0 +1,67 @@ +import testing ; + +alias glibmm : : : : + "`pkg-config --cflags glibmm-2.4`" + "`pkg-config --libs glibmm-2.4`" + ; +lib slicer : : : : /usr/include/slicer ; +lib slicer-json : : : : /usr/include/slicer ; +lib Ice ; +lib IceUtil ; +lib jsonpp ; +lib pthread ; +lib boost_system ; +lib boost_filesystem ; +lib curl ; + +lib tmdb : + [ glob *.cpp *.ice : test*.cpp ] : + Ice + IceUtil + jsonpp + pthread + slicer + slicer-json + boost_system + glibmm + curl + yes + : : + . + Ice + IceUtil + pthread + ; + +unit-test testModels : + [ glob testModels.cpp ] + : + tmdb + slicer + slicer-json + boost_filesystem + boost_system + tmdb + ; + +unit-test testFormatUrls : + [ glob testFormatUrls.cpp ] + : + tmdb + slicer + slicer-json + boost_filesystem + boost_system + tmdb + ; + +unit-test testCallMockApi : + [ glob testCallMockApi.cpp ] + : + tmdb + slicer + slicer-json + boost_filesystem + boost_system + tmdb + ; -- cgit v1.2.3