Link statically to the MSVC runtime library in configurations.gypi.

This commit is contained in:
Ryan Prichard 2016-01-24 02:26:58 -06:00
parent b844635158
commit 41762f3851

View File

@ -26,9 +26,19 @@
'configurations': {
'Release_Win32': {
'msvs_configuration_platform': 'Win32',
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 0, # MultiThreaded (/MT)
},
},
},
'Release_x64': {
'msvs_configuration_platform': 'x64',
'msvs_settings': {
'VCCLCompilerTool': {
'RuntimeLibrary': 0, # MultiThreaded (/MT)
},
},
},
},
'msvs_configuration_attributes': {