blob: 7133792b331dff8c587026e7512f97c07a37ce21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
def configure(conf):
conf.env.prepend_value('LINKFLAGS', '-Lsrc')
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'tests'
obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM LIBXML++'
obj.use = 'libcxml'
obj.source = 'tests.cc'
obj.target = 'tests'
obj.install_path = ''
|