summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-02 12:49:00 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-02 12:49:00 +0000
commit555ced5ed96828bd332623665c0565cd8b3a0df6 (patch)
treedd1cc225304c3d20a69e134a897a19eca1dcf290 /examples
parent6e9b1b0ca5e839bda7b567b609cebb92a1cb95a7 (diff)
Use OpenMP when comparing picture assets.
Diffstat (limited to 'examples')
-rw-r--r--examples/wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/wscript b/examples/wscript
index abb0885c..01dc9c8e 100644
--- a/examples/wscript
+++ b/examples/wscript
@@ -1,16 +1,16 @@
def build(bld):
- obj = bld(features = 'cxx cxxprogram')
+ obj = bld(features='cxx cxxprogram')
obj.name = 'make_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML'
+ obj.uselib = 'OPENJPEG CXML OPENMP'
obj.source = 'make_dcp.cc'
obj.target = 'make_dcp'
obj.install_path = ''
- obj = bld(features = 'cxx cxxprogram')
+ obj = bld(features='cxx cxxprogram')
obj.name = 'read_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML MAGICK'
+ obj.uselib = 'OPENJPEG CXML MAGICK OPENMP'
obj.source = 'read_dcp.cc'
obj.target = 'read_dcp'
obj.install_path = ''