diff options
-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) |