summaryrefslogtreecommitdiff
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
parentbf9eb612ef464db95c365e0de4ebd98ab23e5b9c (diff)
Fix static build.
-rw-r--r--examples/wscript2
-rw-r--r--test/wscript6
-rw-r--r--tools/wscript4
3 files changed, 6 insertions, 6 deletions
diff --git a/examples/wscript b/examples/wscript
index 46d3287b..05cca98f 100644
--- a/examples/wscript
+++ b/examples/wscript
@@ -2,7 +2,7 @@ def build(bld):
obj = bld(features = 'cxx cxxprogram')
obj.name = 'examples'
obj.use = 'libdcp'
- obj.uselib = 'OPENJPEG'
+ obj.uselib = 'OPENJPEG CXML'
obj.source = 'make_dcp.cc'
obj.target = 'make_dcp'
obj.install_path = ''
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'
diff --git a/tools/wscript b/tools/wscript
index a79b3c9d..e4a32534 100644
--- a/tools/wscript
+++ b/tools/wscript
@@ -1,13 +1,13 @@
def build(bld):
obj = bld(features = 'cxx cxxprogram')
obj.use = ['libdcp']
- obj.uselib = 'OPENJPEG'
+ obj.uselib = 'OPENJPEG CXML'
obj.source = 'dcpdiff.cc'
obj.target = 'dcpdiff'
obj = bld(features = 'cxx cxxprogram')
obj.use = ['libdcp']
- obj.uselib = 'OPENJPEG'
+ obj.uselib = 'OPENJPEG CXML'
obj.source = 'dcpinfo.cc'
obj.target = 'dcpinfo'