diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-06 17:40:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-22 01:21:00 +0100 |
| commit | b60fd2d2b68be2a2fcfe067fd5a96af5b08e3a8d (patch) | |
| tree | 206cae9720d37ce7830a5758cd71794afe2ed9c8 /wscript | |
| parent | e975e945a5520654db949324de7992ea70d442ee (diff) | |
Use regex and check <IssueDate> in CPL.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -195,6 +195,15 @@ def configure(conf): libpath='/usr/local/lib', lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], uselib_store='BOOST_DATETIME') + + conf.check_cxx(fragment=""" + #include <boost/regex.hpp>\n + int main() { boost::regex ex("a"); }\n + """, + msg='Checking for boost regex library', + libpath='/usr/local/lib', + lib=['boost_regex%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], + uselib_store='BOOST_REGEX') if not conf.env.DISABLE_TESTS: conf.recurse('test') |
