summaryrefslogtreecommitdiff
path: root/tools/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-03 12:02:16 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-20 19:32:42 +0200
commitb91b77b58e83f87acae04e0d4df49e711af41d83 (patch)
tree572d684d16112adba2a747e93deb6a9f329e4ac9 /tools/wscript
parent41bd0a4ae67b6ab2cf83e176e6538348eb6877ff (diff)
Add --ignore-missing-assets and --quiet to dcpverify.
Diffstat (limited to 'tools/wscript')
-rw-r--r--tools/wscript10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/wscript b/tools/wscript
index 912a7750..3d07d4b6 100644
--- a/tools/wscript
+++ b/tools/wscript
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+# Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
#
# This file is part of libdcp.
#
@@ -44,7 +44,13 @@ def build(bld):
obj.source = 'dcpinfo.cc common.cc'
obj.target = 'dcpinfo'
- for f in ['dumpsub', 'decryptmxf', 'kdm', 'thumb', 'recover', 'verify']:
+ obj = bld(features='cxx cxxprogram')
+ obj.use = ['libdcp%s' % bld.env.API_VERSION]
+ obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM LIBXML++ XMLSEC1 OPENSSL XERCES'
+ obj.source = 'dcpverify.cc common.cc'
+ obj.target = 'dcpverify'
+
+ for f in ['dumpsub', 'decryptmxf', 'kdm', 'thumb', 'recover']:
obj = bld(features='cxx cxxprogram')
obj.use = ['libdcp%s' % bld.env.API_VERSION]
obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM LIBXML++ XMLSEC1 OPENSSL XERCES '