File -> Document and allow use of streams.
[libcxml.git] / test / wscript
1 def configure(conf):
2     conf.env.prepend_value('LINKFLAGS', '-Lsrc')
3
4 def build(bld):
5     obj = bld(features = 'cxx cxxprogram')
6     obj.name   = 'tests'
7     obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM'
8     obj.use    = 'libcxml'
9     obj.source = 'tests.cc'
10     obj.target = 'tests'
11     obj.install_path = ''