From 206786f0dbf5a75d172f04c6fe434b326a8f974e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 24 Feb 2014 13:00:43 +0000 Subject: Make 1.0 parallel-installable with 0.x. --- test/wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/wscript') 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 = '' -- cgit v1.2.3