diff options
author | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-10-03 20:15:13 +0000 |
---|---|---|
committer | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-10-03 20:15:13 +0000 |
commit | 7deaa3b75c94b6fc2e2207de4d13ed1834b87211 (patch) | |
tree | e838830b40e55a667d5ffac3486921d7b2907a91 | |
parent | 983297e813d68cd3fdbd39fb3543cb5439b228ce (diff) |
Update common_conditions to make sure there is a slash in VS2008.
http://codereview.appspot.com/5172047/
git-svn-id: http://skia.googlecode.com/svn/trunk@2398 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | gyp/common_conditions.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi index e2accd762e..40649f1e94 100644 --- a/gyp/common_conditions.gypi +++ b/gyp/common_conditions.gypi @@ -30,7 +30,7 @@ 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '4', # editAndContiue (/ZI) - 'ProgramDataBaseFileName': '$(OutDir)$(ProjectName).pdb', + 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', 'Optimization': '0', # optimizeDisabled (/Od) 'PreprocessorDefinitions': ['_DEBUG'], 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd) @@ -48,7 +48,7 @@ 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '3', # programDatabase (/Zi) - 'ProgramDataBaseFileName': '$(OutDir)$(ProjectName).pdb', + 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', 'Optimization': '3', # full (/Ox) 'WholeProgramOptimization': 'true', #/GL # Changing the floating point model requires rebaseling gm images |