diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-17 17:14:38 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-17 17:14:38 +0000 |
| commit | 77726c718ccce4af4bc82c3695a13cea859df874 (patch) | |
| tree | 9a4eabc2ed66f9d7d32eac71c4ad2419dbe50a42 /test/wscript | |
| parent | 41fc6e366ad3de85704c35961beaf539ab9ceb8b (diff) | |
wscript tidying.
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/wscript b/test/wscript index 7bb68252..1235a26d 100644 --- a/test/wscript +++ b/test/wscript @@ -4,19 +4,19 @@ def configure(conf): else: boost_lib_suffix = '' - conf.check_cxx(fragment = """ - #define BOOST_TEST_MODULE Config test\n - #include <boost/test/unit_test.hpp>\n - int main() {} - """, - msg = 'Checking for boost unit testing library', - lib = 'boost_unit_test_framework%s' % boost_lib_suffix, - uselib_store = 'BOOST_TEST') + conf.check_cxx(fragment=""" + #define BOOST_TEST_MODULE Config test\n + #include <boost/test/unit_test.hpp>\n + int main() {} + """, + msg='Checking for boost unit testing library', + lib='boost_unit_test_framework%s' % boost_lib_suffix, + uselib_store='BOOST_TEST') conf.env.prepend_value('LINKFLAGS', '-Lsrc') def build(bld): - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.name = 'tests' obj.uselib = 'BOOST_TEST OPENJPEG CXML XMLSEC1' obj.use = 'libdcp' @@ -44,7 +44,7 @@ def build(bld): obj.target = 'tests' obj.install_path = '' - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.name = 'subs_in_out' obj.uselib = 'BOOST_TEST OPENJPEG CXML' obj.use = 'libdcp' @@ -52,7 +52,7 @@ def build(bld): obj.target = 'subs_in_out' obj.install_path = '' - obj = bld(features = 'cxx cxxprogram') + obj = bld(features='cxx cxxprogram') obj.name = 'rewrite_subs' obj.uselib = 'BOOST_TEST OPENJPEG CXML' obj.use = 'libdcp' |
