From 60c37db799726e92212bf50468087d7545d8f72f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 25 Dec 2013 20:15:08 +0000 Subject: Load waf modules before everything else so CFLAGS and friends are correct (oops). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5204 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index f2e7fdf4..43af254f 100644 --- a/wscript +++ b/wscript @@ -32,14 +32,13 @@ 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') - conf.check_cxx(cxxflags=["-std=c++0x"]) + autowaf.configure(conf) + autowaf.display_header('Ingen Configuration') + conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) autowaf.check_header(conf, 'cxx', 'boost/format.hpp') -- cgit v1.2.1