summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-25 17:43:17 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-25 17:43:17 +0100
commit9977612bb52da625e521232b4d2a0063d08453f7 (patch)
treec80b366806ef519afc7183d13c0bef84e70b8bdd /test/wscript
parent4e027bff77556ebf186b10bfa4828aef1dc58654 (diff)
Missing uselib.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wscript b/test/wscript
index 54fe932..7133792 100644
--- a/test/wscript
+++ b/test/wscript
@@ -4,7 +4,7 @@ def configure(conf):
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'tests'
- obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM'
+ obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM LIBXML++'
obj.use = 'libcxml'
obj.source = 'tests.cc'
obj.target = 'tests'