summaryrefslogtreecommitdiff
path: root/libtmdb/Jamfile.jam
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2014-09-19 23:52:30 +0000
committerrandomdan <randomdan@localhost>2014-09-19 23:52:30 +0000
commit28691c29e93fbc4fdb5ae4866287282840fba021 (patch)
tree8b83ca80afc3f3a5d11b04a56c440d2aa38f4e16 /libtmdb/Jamfile.jam
parentSupport muxing directly in storage (diff)
downloadp2pvr-28691c29e93fbc4fdb5ae4866287282840fba021.tar.bz2
p2pvr-28691c29e93fbc4fdb5ae4866287282840fba021.tar.xz
p2pvr-28691c29e93fbc4fdb5ae4866287282840fba021.zip
First bash at a slicer ice proxy for TMDb and an untested instantiation in p2pvr's core adapter
Diffstat (limited to 'libtmdb/Jamfile.jam')
-rw-r--r--libtmdb/Jamfile.jam67
1 files changed, 67 insertions, 0 deletions
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 : : : :
+ <cflags>"`pkg-config --cflags glibmm-2.4`"
+ <linkflags>"`pkg-config --libs glibmm-2.4`"
+ ;
+lib slicer : : : : <include>/usr/include/slicer ;
+lib slicer-json : : : : <include>/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 ] :
+ <library>Ice
+ <library>IceUtil
+ <library>jsonpp
+ <library>pthread
+ <library>slicer
+ <library>slicer-json
+ <library>boost_system
+ <library>glibmm
+ <library>curl
+ <slicer>yes
+ : :
+ <include>.
+ <library>Ice
+ <library>IceUtil
+ <library>pthread
+ ;
+
+unit-test testModels :
+ [ glob testModels.cpp ]
+ :
+ <library>tmdb
+ <library>slicer
+ <library>slicer-json
+ <library>boost_filesystem
+ <library>boost_system
+ <implicit-dependency>tmdb
+ ;
+
+unit-test testFormatUrls :
+ [ glob testFormatUrls.cpp ]
+ :
+ <library>tmdb
+ <library>slicer
+ <library>slicer-json
+ <library>boost_filesystem
+ <library>boost_system
+ <implicit-dependency>tmdb
+ ;
+
+unit-test testCallMockApi :
+ [ glob testCallMockApi.cpp ]
+ :
+ <library>tmdb
+ <library>slicer
+ <library>slicer-json
+ <library>boost_filesystem
+ <library>boost_system
+ <implicit-dependency>tmdb
+ ;