summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-25 20:15:08 +0000
committerDavid Robillard <d@drobilla.net>2013-12-25 20:15:08 +0000
commit60c37db799726e92212bf50468087d7545d8f72f (patch)
treed7c32ce5fee73d529114205abe012b3cbeb7b8b1 /wscript
parentd80d857b47dbefd75d6a87256a9cd96ae628b82d (diff)
downloadingen-60c37db799726e92212bf50468087d7545d8f72f.tar.gz
ingen-60c37db799726e92212bf50468087d7545d8f72f.tar.bz2
ingen-60c37db799726e92212bf50468087d7545d8f72f.zip
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
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 3 insertions, 4 deletions
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')