summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-02-24 13:00:43 +0000
committerCarl Hetherington <cth@carlh.net>2014-02-24 13:00:43 +0000
commit206786f0dbf5a75d172f04c6fe434b326a8f974e (patch)
treef644b4a67b17f1272d6543178862ade1aac908bb /test/wscript
parente014e349567fa8ac22b7f803d4534c9a4b00264a (diff)
Make 1.0 parallel-installable with 0.x.
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 83253f2b..407765af 100644
--- a/test/wscript
+++ b/test/wscript
@@ -19,7 +19,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'tests'
obj.uselib = 'BOOST_TEST OPENJPEG CXML XMLSEC1 SNDFILE'
- obj.use = 'libdcp'
+ obj.use = 'libdcp%s' % bld.env.API_VERSION
obj.source = """
certificates_test.cc
color_test.cc
@@ -45,7 +45,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'subs_in_out'
obj.uselib = 'BOOST_TEST OPENJPEG CXML'
- obj.use = 'libdcp'
+ obj.use = 'libdcp%s' % bld.env.API_VERSION
obj.source = 'subs_in_out.cc'
obj.target = 'subs_in_out'
obj.install_path = ''
@@ -53,7 +53,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'rewrite_subs'
obj.uselib = 'BOOST_TEST OPENJPEG CXML'
- obj.use = 'libdcp'
+ obj.use = 'libdcp%s' % bld.env.API_VERSION
obj.source = 'rewrite_subs.cc'
obj.target = 'rewrite_subs'
obj.install_path = ''