summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-15 00:14:28 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-15 00:14:28 +0100
commitbb767c7e338414beee132af3e96829c1448e214b (patch)
treebec2858dcc7225a9bcc2acd8170c25508f6df6cb /test/wscript
parent66c9be6bdb1361e5681e094a0c8170d268aa9518 (diff)
Move things round a bit.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript16
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 = ''