diff options
author | David Robillard <d@drobilla.net> | 2013-12-25 20:15:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-25 20:15:08 +0000 |
commit | 202b760c1da2d43a10de7038ee7c30e36fcdad75 (patch) | |
tree | de94d73f39353952865c788054f08bf974d45926 | |
parent | 383a0cf8086b861bec8d6d8ec022fd15127bff49 (diff) | |
download | raul-202b760c1da2d43a10de7038ee7c30e36fcdad75.tar.gz raul-202b760c1da2d43a10de7038ee7c30e36fcdad75.tar.bz2 raul-202b760c1da2d43a10de7038ee7c30e36fcdad75.zip |
Load waf modules before everything else so CFLAGS and friends are correct (oops).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@5204 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,9 +39,9 @@ def options(opt): help="Build unit tests") def configure(conf): + conf.line_just = 40 conf.load('compiler_cxx') autowaf.configure(conf) - conf.line_just = 40 autowaf.display_header('Raul Configuration') conf.check_cxx(cxxflags=["-std=c++0x"]) |