diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-15 11:41:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-15 11:41:01 +0100 |
| commit | 181bc4775a198446e2e68828b48199f26c2ea0b6 (patch) | |
| tree | 9b508c035525287c483b18e4d2332529254e5276 | |
| parent | a3032f36d1fe5313925f6d719552a756d43f3b47 (diff) | |
A few new bits.
| -rw-r--r-- | tools/dcpkdm.cc | 1 | ||||
| -rw-r--r-- | tools/wscript | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/dcpkdm.cc b/tools/dcpkdm.cc index 1e35803f..7ea2df5b 100644 --- a/tools/dcpkdm.cc +++ b/tools/dcpkdm.cc @@ -104,6 +104,7 @@ main (int argc, char* argv[]) cout << "\n"; cout << "\tID: " << i.id() << "\n"; cout << "\tStandard: " << (i.standard() == dcp::SMPTE ? "SMPTE" : "Interop") << "\n"; + cout << "\tCPL ID: " << i.cpl_id() << "\n"; if (i.type()) { cout << "\tType: " << i.type().get() << "\n"; } diff --git a/tools/wscript b/tools/wscript index ecdd74d4..f54646b4 100644 --- a/tools/wscript +++ b/tools/wscript @@ -44,7 +44,7 @@ def build(bld): obj.source = 'dcpinfo.cc common.cc' obj.target = 'dcpinfo' - for f in ['dumpsub', 'decryptmxf', 'kdm']: + for f in ['dumpsub', 'decryptmxf', 'kdm', 'signerthumb']: 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' |
