Don't use /ZI on 64 bit windows

Review URL: https://codereview.chromium.org/728633002
This commit is contained in:
bsalomon 2014-11-13 13:47:06 -08:00 committed by Commit bot
parent f21dab9540
commit 6740feb093

View File

@ -129,6 +129,12 @@
'configurations': {
'Debug_x64': {
'inherit_from': ['Debug'],
'msvs_settings': {
'VCCLCompilerTool': {
# /ZI is not supported on 64bit
'DebugInformationFormat': '3', # programDatabase (/Zi)
},
},
},
'Release_x64': {
'inherit_from': ['Release'],