diff options
author | David Robillard <d@drobilla.net> | 2011-07-07 19:21:37 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-07-07 19:21:37 +0000 |
commit | fb2e4b8c2059ee632bd907485aef74ac09f2cd61 (patch) | |
tree | 80b2e6d180c76c54b9ce6b6d6d7ddf408a27ea8f /wscript | |
parent | 62b0e6acff0e070485fb8d5996f0e3f09f5713ba (diff) | |
download | serd-fb2e4b8c2059ee632bd907485aef74ac09f2cd61.tar.gz serd-fb2e4b8c2059ee632bd907485aef74ac09f2cd61.tar.bz2 serd-fb2e4b8c2059ee632bd907485aef74ac09f2cd61.zip |
Upgrade to waf 1.6.6 and autowaf r49 (don't check for C++ compiler)
git-svn-id: http://svn.drobilla.net/serd/trunk@208 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,4 @@ + #!/usr/bin/env python import filecmp import glob @@ -29,6 +30,7 @@ out = 'build' def options(opt): autowaf.set_options(opt) + opt.load('compiler_c') opt.add_option('--no-utils', action='store_true', default=False, dest='no_utils', help="Do not build command line utilities") opt.add_option('--test', action='store_true', default=False, dest='build_tests', @@ -41,7 +43,7 @@ def configure(conf): conf.line_just = 13 autowaf.display_header('Serd Configuration') - conf.load('compiler_cc') + conf.load('compiler_c') conf.env.append_value('CFLAGS', '-std=c99') conf.env['BUILD_TESTS'] = Options.options.build_tests |