diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-18 16:50:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-18 16:50:00 +0100 |
| commit | 221113dc6844bb0beb8d32544601396649c2616c (patch) | |
| tree | a52a7f426a78d54a7233756598e3b1c4cb82be52 /tools/wscript | |
| parent | bf9eb612ef464db95c365e0de4ebd98ab23e5b9c (diff) | |
Fix static build.
Diffstat (limited to 'tools/wscript')
| -rw-r--r-- | tools/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wscript b/tools/wscript index a79b3c9d..e4a32534 100644 --- a/tools/wscript +++ b/tools/wscript @@ -1,13 +1,13 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') obj.use = ['libdcp'] - obj.uselib = 'OPENJPEG' + obj.uselib = 'OPENJPEG CXML' obj.source = 'dcpdiff.cc' obj.target = 'dcpdiff' obj = bld(features = 'cxx cxxprogram') obj.use = ['libdcp'] - obj.uselib = 'OPENJPEG' + obj.uselib = 'OPENJPEG CXML' obj.source = 'dcpinfo.cc' obj.target = 'dcpinfo' |
