diff options
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript index 14534bd9..f24683b7 100644 --- a/test/wscript +++ b/test/wscript @@ -23,3 +23,11 @@ def build(bld): obj.source = 'tests.cc' obj.target = 'tests' obj.install_path = '' + + obj = bld(features = 'cxx cxxprogram') + obj.name = 'subs_in_out' + obj.uselib = 'BOOST_TEST OPENJPEG' + obj.use = 'libdcp' + obj.source = 'subs_in_out.cc' + obj.target = 'subs_in_out' + obj.install_path = '' |
