diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-03 12:02:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-21 21:57:18 +0200 |
| commit | f0db3154e27a4f6947590ea183412e53e1987e35 (patch) | |
| tree | 05d5763efeb82da0f24fc3725dadd95bb7a76fcc /tools/wscript | |
| parent | 08db8ff8a9875fe98acfd4746af293dfcc1087c2 (diff) | |
Add --ignore-missing-assets and --quiet to dcpverify.
Diffstat (limited to 'tools/wscript')
| -rw-r--r-- | tools/wscript | 10 |
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 ' |
