diff options
author | randomdan <randomdan@localhost> | 2014-11-04 19:38:37 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2014-11-04 19:38:37 +0000 |
commit | b2307d56d7273064a6b5b207227b997d8d3363be (patch) | |
tree | 19b7e9b7b86a97ab964de4e751fbaabd14820980 /libtmdb | |
parent | Slicer compat fix (diff) | |
download | p2pvr-b2307d56d7273064a6b5b207227b997d8d3363be.tar.bz2 p2pvr-b2307d56d7273064a6b5b207227b997d8d3363be.tar.xz p2pvr-b2307d56d7273064a6b5b207227b997d8d3363be.zip |
Link to external Boost UTF
Diffstat (limited to 'libtmdb')
-rw-r--r-- | libtmdb/Jamfile.jam | 7 | ||||
-rw-r--r-- | libtmdb/testCallMockApi.cpp | 2 | ||||
-rw-r--r-- | libtmdb/testFormatUrls.cpp | 2 | ||||
-rw-r--r-- | libtmdb/testModels.cpp | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/libtmdb/Jamfile.jam b/libtmdb/Jamfile.jam index 2e51377..8b6d246 100644 --- a/libtmdb/Jamfile.jam +++ b/libtmdb/Jamfile.jam @@ -13,6 +13,7 @@ lib pthread ; lib boost_system ; lib boost_filesystem ; lib curl ; +lib boost_utf : : <name>boost_unit_test_framework ; lib tmdb : [ glob *.cpp *.ice : test*.cpp ] : @@ -36,6 +37,8 @@ lib tmdb : unit-test testModels : [ glob testModels.cpp ] : + <define>BOOST_TEST_DYN_LINK + <library>boost_utf <library>tmdb <library>slicer <library>slicer-json @@ -47,6 +50,8 @@ unit-test testModels : unit-test testFormatUrls : [ glob testFormatUrls.cpp ] : + <define>BOOST_TEST_DYN_LINK + <library>boost_utf <library>tmdb <library>slicer <library>slicer-json @@ -58,6 +63,8 @@ unit-test testFormatUrls : unit-test testCallMockApi : [ glob testCallMockApi.cpp ] : + <define>BOOST_TEST_DYN_LINK + <library>boost_utf <library>tmdb <library>slicer <library>slicer-json diff --git a/libtmdb/testCallMockApi.cpp b/libtmdb/testCallMockApi.cpp index 08719ca..6321773 100644 --- a/libtmdb/testCallMockApi.cpp +++ b/libtmdb/testCallMockApi.cpp @@ -1,5 +1,5 @@ #define BOOST_TEST_MODULE CallMockApi -#include <boost/test/included/unit_test.hpp> +#include <boost/test/unit_test.hpp> #include "tmdb-proxy.h" diff --git a/libtmdb/testFormatUrls.cpp b/libtmdb/testFormatUrls.cpp index f3aa2a8..0df6670 100644 --- a/libtmdb/testFormatUrls.cpp +++ b/libtmdb/testFormatUrls.cpp @@ -1,5 +1,5 @@ #define BOOST_TEST_MODULE FormatUrls -#include <boost/test/included/unit_test.hpp> +#include <boost/test/unit_test.hpp> #define private public #define protected public diff --git a/libtmdb/testModels.cpp b/libtmdb/testModels.cpp index 6d87c8f..fe2dbab 100644 --- a/libtmdb/testModels.cpp +++ b/libtmdb/testModels.cpp @@ -1,5 +1,5 @@ #define BOOST_TEST_MODULE Deserialize -#include <boost/test/included/unit_test.hpp> +#include <boost/test/unit_test.hpp> #include <tmdb-models.h> #include <slicer/slicer.h> |