aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-09-20 21:24:54 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2015-09-20 21:24:54 +0300
commitd23e59ed5f82a3f2d3b0d70faf71a6d4ca16eaaa (patch)
tree65929ad4cda4f45ec912175ce143358680814230 /compilers.py
parent7ed4fad033e116ac4710409dc9cd7e9c3bffe092 (diff)
downloadmeson-d23e59ed5f82a3f2d3b0d70faf71a6d4ca16eaaa.zip
meson-d23e59ed5f82a3f2d3b0d70faf71a6d4ca16eaaa.tar.gz
meson-d23e59ed5f82a3f2d3b0d70faf71a6d4ca16eaaa.tar.bz2
But build type build args to vs command line.
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilers.py b/compilers.py
index df8fc2f..f817161 100644
--- a/compilers.py
+++ b/compilers.py
@@ -52,8 +52,8 @@ gnulike_buildtype_args = {'plain' : [],
'release' : ['-O3']}
msvc_buildtype_args = {'plain' : [],
- 'debug' : ["/MDd", "/Zi", "/Ob0", "/Od", "/RTC1"],
- 'debugoptimized' : ["/MD", "/Zi", "/O2", "/Ob1", "/D"],
+ 'debug' : ["/MDd", "/ZI", "/Ob0", "/Od", "/RTC1"],
+ 'debugoptimized' : ["/MD", "/ZI", "/O2", "/Ob1", "/D"],
'release' : ["/MD", "/O2", "/Ob2"]}
gnulike_buildtype_linker_args = {}