diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-27 14:41:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-27 14:41:33 +0000 |
| commit | 8c2f3517e868078b551bb01d975f2956cb692fbf (patch) | |
| tree | 81bf98f00b9a267a73494c1939c6e9473559c85e /examples/wscript | |
| parent | e5d368553b47a566a83d4edce0a8f166db9509e6 (diff) | |
Various tinkerings.
Diffstat (limited to 'examples/wscript')
| -rw-r--r-- | examples/wscript | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/wscript b/examples/wscript index 05cca98f..7de1199d 100644 --- a/examples/wscript +++ b/examples/wscript @@ -1,8 +1,16 @@ def build(bld): obj = bld(features = 'cxx cxxprogram') - obj.name = 'examples' + obj.name = 'make_dcp' obj.use = 'libdcp' obj.uselib = 'OPENJPEG CXML' obj.source = 'make_dcp.cc' obj.target = 'make_dcp' obj.install_path = '' + + obj = bld(features = 'cxx cxxprogram') + obj.name = 'read_dcp' + obj.use = 'libdcp' + obj.uselib = 'OPENJPEG CXML' + obj.source = 'read_dcp.cc' + obj.target = 'read_dcp' + obj.install_path = '' |
