diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-07 21:21:49 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-07 21:21:49 +0000 |
| commit | 6c2e8c4812a80ac6052da8ff82b49bb8f97cfb43 (patch) | |
| tree | c54d2d1fe323d8d2897b24ec113ef4c6573a2a94 /tools/wscript | |
| parent | 7e0ebcd1f19c8365d16a5fb5a42907867d15cb20 (diff) | |
Allow static builds.
Diffstat (limited to 'tools/wscript')
| -rw-r--r-- | tools/wscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/wscript b/tools/wscript index d9ed0419..a79b3c9d 100644 --- a/tools/wscript +++ b/tools/wscript @@ -1,11 +1,13 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') obj.use = ['libdcp'] + obj.uselib = 'OPENJPEG' obj.source = 'dcpdiff.cc' obj.target = 'dcpdiff' obj = bld(features = 'cxx cxxprogram') obj.use = ['libdcp'] + obj.uselib = 'OPENJPEG' obj.source = 'dcpinfo.cc' obj.target = 'dcpinfo' |
