summaryrefslogtreecommitdiff
path: root/test/wscript
blob: 7ea02a80471debcb6202b1297c07cce205cef7c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = ''