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/pango.vcxprojin | |
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/pango.vcxprojin')
-rw-r--r-- | build/win32/vs10/pango.vcxprojin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/win32/vs10/pango.vcxprojin b/build/win32/vs10/pango.vcxprojin index 54b9aa74..f8967921 100644 --- a/build/win32/vs10/pango.vcxprojin +++ b/build/win32/vs10/pango.vcxprojin @@ -132,7 +132,7 @@ <PreprocessorDefinitions>_DEBUG;$(PangoDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions> <MinimalRebuild>true</MinimalRebuild> <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> @@ -153,7 +153,7 @@ <PreprocessorDefinitions>_DEBUG;$(PangoDefines);$(NoFCDef);%(PreprocessorDefinitions)</PreprocessorDefinitions> <MinimalRebuild>true</MinimalRebuild> <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> - <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <PrecompiledHeader> </PrecompiledHeader> <WarningLevel>Level3</WarningLevel> |