diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2013-03-18 16:37:01 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2013-03-18 16:37:01 +0800 |
commit | 324a5eec22d7f30dc911814a18f2993f4d4b0b12 (patch) | |
tree | cf8fb19c98378961b8c74b512af68becb8c96380 /build/win32/vs10/pangowin32.vcxproj | |
parent | 992e4d27c8e66c8f8cf9df5f143759654967cbab (diff) | |
download | pango-324a5eec22d7f30dc911814a18f2993f4d4b0b12.tar.gz |
Visual Studio Builds: Fix the Debug configs
We need to link to the Debug CRT for debug configs, not the release CRTs,
as linking to different CRTs will cause trouble during debugging.
Diffstat (limited to 'build/win32/vs10/pangowin32.vcxproj')
-rw-r--r-- | build/win32/vs10/pangowin32.vcxproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/win32/vs10/pangowin32.vcxproj b/build/win32/vs10/pangowin32.vcxproj index 75586f65..8980e36b 100644 --- a/build/win32/vs10/pangowin32.vcxproj +++ b/build/win32/vs10/pangowin32.vcxproj @@ -133,7 +133,7 @@ <PreprocessorDefinitions>_DEBUG;$(PangoDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions> <MinimalRebuild>true</MinimalRebuild> <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> @@ -156,7 +156,7 @@ <PreprocessorDefinitions>_DEBUG;$(PangoDefines);$(NoFCDef);%(PreprocessorDefinitions)</PreprocessorDefinitions> <MinimalRebuild>true</MinimalRebuild> <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> |