diff options
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript new file mode 100644 index 000000000..7ea02a804 --- /dev/null +++ b/test/wscript @@ -0,0 +1,16 @@ +def build(bld): + obj = bld(features = 'cxx cxxprogram') + obj.name = 'short-unit-tests' + obj.uselib = 'BOOST_TEST' + obj.use = 'libdvdomatic' + obj.source = 'short.cc' + obj.target = 'short-unit-tests' + obj.install_path = '' + + obj = bld(features = 'cxx cxxprogram') + obj.name = 'long-unit-tests' + obj.uselib = 'BOOST_TEST' + obj.use = 'libdvdomatic' + obj.source = 'long.cc' + obj.target = 'long-unit-tests' + obj.install_path = '' |
