diff options
author | David Robillard <d@drobilla.net> | 2012-08-03 17:56:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-03 17:56:44 +0000 |
commit | 97a1c3c55874ef48ea591146ee16fdb0c76a730f (patch) | |
tree | e824cae8e298db63fead08744fa10cd3bb351400 /wscript | |
parent | 0994283a7d427b0554398b912360312b621de8ee (diff) | |
download | lv2-97a1c3c55874ef48ea591146ee16fdb0c76a730f.tar.xz |
Fix compilation with MSVC.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -54,7 +54,10 @@ def configure(conf): autowaf.configure(conf) autowaf.set_recursive() - conf.env.append_unique('CFLAGS', '-std=c99') + if conf.env['MSVC_COMPILER']: + conf.env.append_unique('CFLAGS', ['-TP', '-MD']) + else: + conf.env.append_unique('CFLAGS', '-std=c99') conf.env['BUILD_TESTS'] = Options.options.build_tests conf.env['BUILD_PLUGINS'] = not Options.options.no_plugins |