aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorJohannes Schickel2016-03-09 19:03:04 +0100
committerJohannes Schickel2016-03-09 22:03:47 +0100
commit7127fadc96821148ca0c64bb8f47e597e3daecec (patch)
tree98ea883d8fd095e68f0be2f4124f4e02277b20d6 /devtools
parent5510fdc7e47d0b2a1bd734bef812cdf819a2a4c2 (diff)
downloadscummvm-rg350-7127fadc96821148ca0c64bb8f47e597e3daecec.tar.gz
scummvm-rg350-7127fadc96821148ca0c64bb8f47e597e3daecec.tar.bz2
scummvm-rg350-7127fadc96821148ca0c64bb8f47e597e3daecec.zip
DEVTOOLS: Use DLL runtime for MSBuild output.
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/msbuild.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/devtools/create_project/msbuild.cpp b/devtools/create_project/msbuild.cpp
index 191135fd88..5714e2e0d7 100644
--- a/devtools/create_project/msbuild.cpp
+++ b/devtools/create_project/msbuild.cpp
@@ -431,7 +431,7 @@ void MSBuildProvider::createBuildProp(const BuildSetup &setup, bool isRelease, b
"\t\t\t<StringPooling>true</StringPooling>\n"
"\t\t\t<BufferSecurityCheck>false</BufferSecurityCheck>\n"
"\t\t\t<DebugInformationFormat></DebugInformationFormat>\n"
- "\t\t\t<RuntimeLibrary>MultiThreaded</RuntimeLibrary>\n"
+ "\t\t\t<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>\n"
"\t\t\t<EnablePREfast>" << (configuration == "Analysis" ? "true" : "false") << "</EnablePREfast>\n"
"\t\t</ClCompile>\n"
"\t\t<Link>\n"
@@ -442,7 +442,7 @@ void MSBuildProvider::createBuildProp(const BuildSetup &setup, bool isRelease, b
"\t\t\t<PreprocessorDefinitions>WIN32;" << (configuration == "LLVM" ? "_CRT_SECURE_NO_WARNINGS;" : "") << "%(PreprocessorDefinitions)</PreprocessorDefinitions>\n"
"\t\t\t<MinimalRebuild>true</MinimalRebuild>\n"
"\t\t\t<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>\n"
- "\t\t\t<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>\n"
+ "\t\t\t<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>\n"
"\t\t\t<FunctionLevelLinking>true</FunctionLevelLinking>\n"
"\t\t\t<TreatWarningAsError>false</TreatWarningAsError>\n";
if (_version >= 14) {