summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-06 17:40:25 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-22 01:21:00 +0100
commitb60fd2d2b68be2a2fcfe067fd5a96af5b08e3a8d (patch)
tree206cae9720d37ce7830a5758cd71794afe2ed9c8 /examples
parente975e945a5520654db949324de7992ea70d442ee (diff)
Use regex and check <IssueDate> in CPL.
Diffstat (limited to 'examples')
-rw-r--r--examples/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/wscript b/examples/wscript
index a71a215b..46ee6c5a 100644
--- a/examples/wscript
+++ b/examples/wscript
@@ -20,7 +20,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'make_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
+ obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM BOOST_REGEX'
obj.source = 'make_dcp.cc'
obj.target = 'make_dcp'
obj.install_path = ''
@@ -28,7 +28,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'read_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
+ obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM BOOST_REGEX'
obj.source = 'read_dcp.cc'
obj.target = 'read_dcp'
obj.install_path = ''