From bb767c7e338414beee132af3e96829c1448e214b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 15 Jul 2012 00:14:28 +0100 Subject: Move things round a bit. --- test/wscript | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/wscript (limited to 'test/wscript') 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 = '' -- cgit v1.2.3