From 0758a4689201cf0fb2e018ddc2b73431cfb41c77 Mon Sep 17 00:00:00 2001 From: Cong Liu Date: Mon, 5 Sep 2016 10:07:13 +0800 Subject: [PATCH] fixed typos in common.gypi to prevent nw-gyp failure fixed nwjs/nw-gyp#96 --- common.gypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.gypi b/common.gypi index f9a7ffed86b..6dadb783596 100644 --- a/common.gypi +++ b/common.gypi @@ -93,7 +93,7 @@ ], 'msvs_settings': { 'VCCLCompilerTool': { - 'RuntimeLibrary': '<(win_debug_RuntimeLibrary), # static debug + 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)', # static debug 'Optimization': 0, # /Od, no optimization 'MinimalRebuild': 'false', 'OmitFramePointers': 'false', @@ -130,7 +130,7 @@ ], 'msvs_settings': { 'VCCLCompilerTool': { - 'RuntimeLibrary': '<(win_release_RuntimeLibrary), # static release + 'RuntimeLibrary': '<(win_release_RuntimeLibrary)', # static release 'Optimization': 3, # /Ox, full optimization 'FavorSizeOrSpeed': 1, # /Ot, favour speed over size 'InlineFunctionExpansion': 2, # /Ob2, inline anything eligible