build: fix commmon.gypi comment

PR-URL: https://github.com/libuv/libuv/pull/1669
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
This commit is contained in:
Ryuichi KAWAMATA 2017-12-06 11:13:41 +09:00 committed by Bartosz Sosnowski
parent 491848a0ad
commit 3f8f6dc4c7

View File

@ -16,9 +16,9 @@
'VCCLCompilerTool': { 'VCCLCompilerTool': {
'target_conditions': [ 'target_conditions': [
['uv_library=="static_library"', { ['uv_library=="static_library"', {
'RuntimeLibrary': 1, # static debug 'RuntimeLibrary': 1, # /MTd static debug
}, { }, {
'RuntimeLibrary': 3, # DLL debug 'RuntimeLibrary': 3, # /MDd DLL debug
}], }],
], ],
'Optimization': 0, # /Od, no optimization 'Optimization': 0, # /Od, no optimization
@ -52,9 +52,9 @@
'VCCLCompilerTool': { 'VCCLCompilerTool': {
'target_conditions': [ 'target_conditions': [
['uv_library=="static_library"', { ['uv_library=="static_library"', {
'RuntimeLibrary': 0, # static release 'RuntimeLibrary': 0, # /MT static release
}, { }, {
'RuntimeLibrary': 2, # debug release 'RuntimeLibrary': 2, # /MD DLL release
}], }],
], ],
'Optimization': 3, # /Ox, full optimization 'Optimization': 3, # /Ox, full optimization