diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-12-02 12:49:00 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-12-02 12:49:00 +0000 |
| commit | 555ced5ed96828bd332623665c0565cd8b3a0df6 (patch) | |
| tree | dd1cc225304c3d20a69e134a897a19eca1dcf290 /tools/wscript | |
| parent | 6e9b1b0ca5e839bda7b567b609cebb92a1cb95a7 (diff) | |
Use OpenMP when comparing picture assets.
Diffstat (limited to 'tools/wscript')
| -rw-r--r-- | tools/wscript | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/wscript b/tools/wscript index 26474fc8..965d1c30 100644 --- a/tools/wscript +++ b/tools/wscript @@ -1,19 +1,18 @@ def build(bld): - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.use = ['libdcp%s' % bld.env.API_VERSION] - obj.uselib = 'OPENJPEG CXML' + obj.uselib = 'OPENJPEG CXML OPENMP' obj.source = 'dcpdiff.cc common.cc' obj.target = 'dcpdiff' - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.use = ['libdcp%s' % bld.env.API_VERSION] - obj.uselib = 'OPENJPEG CXML' + obj.uselib = 'OPENJPEG CXML OPENMP' obj.source = 'dcpinfo.cc common.cc' obj.target = 'dcpinfo' - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.use = ['libdcp%s' % bld.env.API_VERSION] - obj.uselib = 'OPENJPEG CXML' + obj.uselib = 'OPENJPEG CXML OPENMP' obj.source = 'dcpdumpsub.cc' obj.target = 'dcpdumpsub' - |
