summaryrefslogtreecommitdiff
path: root/examples/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 21:16:02 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-28 21:16:02 +0000
commit60ca129e2fbbb65e9b3051fb3da8448a3cb22f84 (patch)
tree3703842d2496d004dbc5b156b975ec3a68487a93 /examples/wscript
parentb28be8a5d9610dc8c83a19d1d531f9ebf21e1492 (diff)
Try to fix cscript build.
Diffstat (limited to 'examples/wscript')
-rw-r--r--examples/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/wscript b/examples/wscript
index 2e9d30a7..2d6cabd9 100644
--- a/examples/wscript
+++ b/examples/wscript
@@ -20,7 +20,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'make_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML OPENMP'
+ obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH'
obj.source = 'make_dcp.cc'
obj.target = 'make_dcp'
obj.install_path = ''
@@ -28,7 +28,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'read_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML MAGICK OPENMP'
+ obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH'
obj.source = 'read_dcp.cc'
obj.target = 'read_dcp'
obj.install_path = ''