diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-02-24 13:00:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-02-24 13:00:43 +0000 |
| commit | 206786f0dbf5a75d172f04c6fe434b326a8f974e (patch) | |
| tree | f644b4a67b17f1272d6543178862ade1aac908bb /examples/wscript | |
| parent | e014e349567fa8ac22b7f803d4534c9a4b00264a (diff) | |
Make 1.0 parallel-installable with 0.x.
Diffstat (limited to 'examples/wscript')
| -rw-r--r-- | examples/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/wscript b/examples/wscript index ce94bfa2..abb0885c 100644 --- a/examples/wscript +++ b/examples/wscript @@ -1,7 +1,7 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') obj.name = 'make_dcp' - obj.use = 'libdcp' + obj.use = 'libdcp%s' % bld.env.API_VERSION obj.uselib = 'OPENJPEG CXML' obj.source = 'make_dcp.cc' obj.target = 'make_dcp' @@ -9,7 +9,7 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') obj.name = 'read_dcp' - obj.use = 'libdcp' + obj.use = 'libdcp%s' % bld.env.API_VERSION obj.uselib = 'OPENJPEG CXML MAGICK' obj.source = 'read_dcp.cc' obj.target = 'read_dcp' |
