diff options
author | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
commit | d9a7d225e4dd7c4736a834d8d6beaee38e10663f (patch) | |
tree | 787955383f7ceb90af325ed8f65af020908d99bf /wscript | |
parent | caf710cfca67678bbf34dd6451c057a85900fead (diff) | |
download | machina-d9a7d225e4dd7c4736a834d8d6beaee38e10663f.tar.gz machina-d9a7d225e4dd7c4736a834d8d6beaee38e10663f.tar.bz2 machina-d9a7d225e4dd7c4736a834d8d6beaee38e10663f.zip |
Check for c++0x compiler flag before adding to environment.
This should fix the partial group build on systems which don't support c++0x.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5036 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,8 @@ def configure(conf): conf.load('compiler_cxx') conf.line_just = 37 autowaf.configure(conf) + + conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) autowaf.display_header('Machina Configuration') |