summaryrefslogtreecommitdiff
path: root/test/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-24 12:57:07 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-24 12:57:07 +0200
commit05ee2d8101a9d28e58a9aca41ebd85e8631b30b7 (patch)
tree9671f68a1789339a970bbf51f92d04621aec6aa9 /test/wscript
parent2aea5e99b0fc774d8539feac92224ca1caa823c7 (diff)
fixup! Move tests that only need src/lib into test/lib.
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript
index 23286751e..612cc4fe0 100644
--- a/test/wscript
+++ b/test/wscript
@@ -33,6 +33,13 @@ def configure(conf):
""", msg = 'Checking for boost unit testing library', lib = 'boost_unit_test_framework%s' % boost_test_suffix, uselib_store = 'BOOST_TEST')
def build(bld):
+ obj = bld(features='cxx cxxstlib')
+ obj.name = 'test'
+ obj.source = 'test.cc'
+ obj.use = 'libdcpomatic2'
+ obj.uselib = 'DCP'
+ obj.target = 'test'
+
bld.recurse('lib')
bld.recurse('wx')