summaryrefslogtreecommitdiff
path: root/tools/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-17 21:06:15 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-17 21:06:15 +0000
commit3a0fc9fa8fda5c3b7a46becaf5f9f36e94d2108a (patch)
tree64397332cff76db01b21d7a082fa8ac137ca96aa /tools/wscript
parent8bb11a39161b8dcd9ef7f405ca77b46e3b368da1 (diff)
Missing uselib.
Diffstat (limited to 'tools/wscript')
-rw-r--r--tools/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wscript b/tools/wscript
index 077035d..052d47f 100644
--- a/tools/wscript
+++ b/tools/wscript
@@ -1,6 +1,6 @@
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.use = ['libsub-1.0']
- obj.uselib = 'OPENJPEG DCP CXML ASDCPLIB_CTH BOOST_FILESYSTEM'
+ obj.uselib = 'OPENJPEG DCP CXML ASDCPLIB_CTH BOOST_FILESYSTEM BOOST_REGEX'
obj.source = 'dumpsubs.cc'
obj.target = 'dumpsubs'