diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-20 21:24:54 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-20 21:24:54 +0300 |
commit | d23e59ed5f82a3f2d3b0d70faf71a6d4ca16eaaa (patch) | |
tree | 65929ad4cda4f45ec912175ce143358680814230 /compilers.py | |
parent | 7ed4fad033e116ac4710409dc9cd7e9c3bffe092 (diff) | |
download | meson-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.py | 4 |
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 = {} |