(svn r7226) -Fix (r7200): [win32] Don't ask my why but I told the linker to ignore the multithreaded

library in for VS2005, resulting in unlinkable code for Release builds.
This commit is contained in:
Darkvater
2006-11-21 13:03:06 +00:00
parent ba9f22cee6
commit 5471c1c50f
3 changed files with 4 additions and 5 deletions

View File

@@ -58,7 +58,7 @@
OutputFile=".\Release/openttd.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="LIBC.lib"
IgnoreDefaultLibraryNames=""
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\Release/openttd.pdb"
SubSystem="2"
@@ -125,7 +125,7 @@
OutputFile=".\Debug/openttd.exe"
LinkIncremental="0"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="LIBC.lib"
IgnoreDefaultLibraryNames="LIBCMT.lib"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\Debug/openttd.pdb"
SubSystem="2"