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. --- tools/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/wscript') diff --git a/tools/wscript b/tools/wscript index e4a32534..518f0026 100644 --- a/tools/wscript +++ b/tools/wscript @@ -1,12 +1,12 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') - obj.use = ['libdcp'] + obj.use = ['libdcp%s' % bld.env.API_VERSION] obj.uselib = 'OPENJPEG CXML' obj.source = 'dcpdiff.cc' obj.target = 'dcpdiff' obj = bld(features = 'cxx cxxprogram') - obj.use = ['libdcp'] + obj.use = ['libdcp%s' % bld.env.API_VERSION] obj.uselib = 'OPENJPEG CXML' obj.source = 'dcpinfo.cc' obj.target = 'dcpinfo' -- cgit v1.2.3