diff options
author | David Robillard <d@drobilla.net> | 2013-12-25 20:05:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-25 20:05:11 +0000 |
commit | d80d857b47dbefd75d6a87256a9cd96ae628b82d (patch) | |
tree | 3aa73b50f7d9e9071c80b411494212032a90187f /wscript | |
parent | 2b44566ea7b73233128d0096f76da42ba3898531 (diff) | |
download | ingen-d80d857b47dbefd75d6a87256a9cd96ae628b82d.tar.gz ingen-d80d857b47dbefd75d6a87256a9cd96ae628b82d.tar.bz2 ingen-d80d857b47dbefd75d6a87256a9cd96ae628b82d.zip |
Tidy up configuration output.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5203 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -32,11 +32,14 @@ def options(opt): help='Build unit tests') def configure(conf): + autowaf.configure(conf) + autowaf.display_header('Ingen Configuration') + conf.load('compiler_cxx') conf.load('python') - autowaf.configure(conf) conf.check_cxx(cxxflags=["-std=c++0x"]) + conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) autowaf.check_header(conf, 'cxx', 'boost/format.hpp') @@ -44,7 +47,6 @@ def configure(conf): autowaf.check_header(conf, 'cxx', 'boost/optional.hpp') autowaf.check_header(conf, 'cxx', 'boost/utility.hpp') - autowaf.display_header('Ingen Configuration') conf.check_python_version((2,4,0), mandatory=False) autowaf.check_pkg(conf, 'lv2', uselib_store='LV2', atleast_version='1.6.1', mandatory=True) |