diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-06 18:38:27 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-06 18:38:27 +0300 |
commit | 776f899e78e88600f34176ef4088c32208802777 (patch) | |
tree | 5aed6ee6a63892ddcc64f6150e379f1a6f41b7aa /compilers.py | |
parent | 4dd6a85075703733f1f610df650b82879b911be7 (diff) | |
download | meson-776f899e78e88600f34176ef4088c32208802777.zip meson-776f899e78e88600f34176ef4088c32208802777.tar.gz meson-776f899e78e88600f34176ef4088c32208802777.tar.bz2 |
Made boost on windows kinda work.
Diffstat (limited to 'compilers.py')
-rw-r--r-- | compilers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compilers.py b/compilers.py index 95582c9..24853e1 100644 --- a/compilers.py +++ b/compilers.py @@ -925,9 +925,9 @@ class VisualStudioCCompiler(CCompiler): self.always_args = VisualStudioCCompiler.vs2013_always_args else: self.always_args = VisualStudioCCompiler.vs2010_always_args - self.std_warn_args = {'1': ['/W2'], - '2': ['/W3'], - '3': ['/w4']} + self.warn_args = {'1': ['/W2'], + '2': ['/W3'], + '3': ['/w4']} def get_always_args(self): return self.always_args |