diff options
author | David Robillard <d@drobilla.net> | 2015-10-10 03:26:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-10 03:26:28 +0000 |
commit | 425786b0c41be41c50675815df51ed8927160865 (patch) | |
tree | 480363543d7bbb4482b0efbbb119cd5bbc95a171 /wscript | |
parent | 387c43e0893d9b8187c1bffe90b3e55384f9b508 (diff) | |
download | ingen-425786b0c41be41c50675815df51ed8927160865.tar.gz ingen-425786b0c41be41c50675815df51ed8927160865.tar.bz2 ingen-425786b0c41be41c50675815df51ed8927160865.zip |
Tidy up global configuration output
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5763 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -45,13 +45,14 @@ def options(opt): help='Print a trace of URI mapping') def configure(conf): + autowaf.display_header('Ingen Configuration') + conf.line_just = 44 conf.load('compiler_cxx') conf.load('lv2') if not Options.options.no_python: conf.load('python') autowaf.configure(conf) - autowaf.display_header('Ingen Configuration') conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) |