Move things round a bit.
[dcpomatic.git] / test / wscript
1 def build(bld):
2     obj = bld(features = 'cxx cxxprogram')
3     obj.name   = 'short-unit-tests'
4     obj.uselib = 'BOOST_TEST'
5     obj.use    = 'libdvdomatic'
6     obj.source = 'short.cc'
7     obj.target = 'short-unit-tests'
8     obj.install_path = ''
9
10     obj = bld(features = 'cxx cxxprogram')
11     obj.name   = 'long-unit-tests'
12     obj.uselib = 'BOOST_TEST'
13     obj.use    = 'libdvdomatic'
14     obj.source = 'long.cc'
15     obj.target = 'long-unit-tests'
16     obj.install_path = ''