summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-18 16:50:00 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-18 16:50:00 +0100
commit221113dc6844bb0beb8d32544601396649c2616c (patch)
treea52a7f426a78d54a7233756598e3b1c4cb82be52 /test/wscript
parentbf9eb612ef464db95c365e0de4ebd98ab23e5b9c (diff)
Fix static build.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/wscript b/test/wscript
index 43ca7d73..4a2f60a5 100644
--- a/test/wscript
+++ b/test/wscript
@@ -18,7 +18,7 @@ def configure(conf):
def build(bld):
obj = bld(features = 'cxx cxxprogram')
obj.name = 'tests'
- obj.uselib = 'BOOST_TEST OPENJPEG'
+ obj.uselib = 'BOOST_TEST OPENJPEG CXML'
obj.use = 'libdcp'
obj.source = 'tests.cc'
obj.target = 'tests'
@@ -26,7 +26,7 @@ def build(bld):
obj = bld(features = 'cxx cxxprogram')
obj.name = 'subs_in_out'
- obj.uselib = 'BOOST_TEST OPENJPEG'
+ obj.uselib = 'BOOST_TEST OPENJPEG CXML'
obj.use = 'libdcp'
obj.source = 'subs_in_out.cc'
obj.target = 'subs_in_out'
@@ -34,7 +34,7 @@ def build(bld):
obj = bld(features = 'cxx cxxprogram')
obj.name = 'rewrite_subs'
- obj.uselib = 'BOOST_TEST OPENJPEG'
+ obj.uselib = 'BOOST_TEST OPENJPEG CXML'
obj.use = 'libdcp'
obj.source = 'rewrite_subs.cc'
obj.target = 'rewrite_subs'