diff options
author | David Robillard <d@drobilla.net> | 2012-04-17 03:13:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-17 03:13:49 +0000 |
commit | 1ec3031dfaf229b9b598216f1a1d92254cbc163a (patch) | |
tree | 37a85e4627c3618028015d94044ad0f2c10512b4 /plugins/eg-amp.lv2 | |
parent | b3bc3c12902047d214387cc6a4dcbf167c872f86 (diff) | |
download | lv2-1ec3031dfaf229b9b598216f1a1d92254cbc163a.tar.xz |
Compile as C++ in MSVC.
Diffstat (limited to 'plugins/eg-amp.lv2')
-rw-r--r-- | plugins/eg-amp.lv2/wscript | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/eg-amp.lv2/wscript b/plugins/eg-amp.lv2/wscript index 9ff2912..8a66de3 100644 --- a/plugins/eg-amp.lv2/wscript +++ b/plugins/eg-amp.lv2/wscript @@ -21,11 +21,14 @@ def configure(conf): autowaf.configure(conf) autowaf.display_header('Amp Configuration') + if conf.env['MSVC_COMPILER']: + conf.env.append_unique('CFLAGS', ['-TP', '-MD']) + else: + conf.env.append_unique('CFLAGS', '-std=c99') + if not autowaf.is_child(): autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE') - conf.env.append_value('CFLAGS', '-std=c99') - # Set env['pluginlib_PATTERN'] pat = conf.env['cshlib_PATTERN'] if pat.startswith('lib'): @@ -63,7 +66,7 @@ def build(bld): includes = None if autowaf.is_child: includes = '../..' - + # Build plugin library obj = bld(features = 'c cshlib', env = penv, |