[Scummvm-git-logs] scummvm master -> 7deaecb308798b2061159fd5a8d62dfa0ee325f7
orgads
orgads at gmail.com
Thu Jul 22 11:30:08 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
7deaecb308 BUILD: Remove pointless condition in msbuild
Commit: 7deaecb308798b2061159fd5a8d62dfa0ee325f7
https://github.com/scummvm/scummvm/commit/7deaecb308798b2061159fd5a8d62dfa0ee325f7
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-07-22T14:29:50+03:00
Commit Message:
BUILD: Remove pointless condition in msbuild
Analysis is debug, not release.
Changed paths:
devtools/create_project/msbuild.cpp
diff --git a/devtools/create_project/msbuild.cpp b/devtools/create_project/msbuild.cpp
index 4db49eab31..84126946c4 100644
--- a/devtools/create_project/msbuild.cpp
+++ b/devtools/create_project/msbuild.cpp
@@ -440,7 +440,7 @@ void MSBuildProvider::createBuildProp(const BuildSetup &setup, bool isRelease, M
<< "\t\t\t<BufferSecurityCheck>false</BufferSecurityCheck>\n"
<< "\t\t\t<DebugInformationFormat></DebugInformationFormat>\n"
<< "\t\t\t<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>\n"
- << "\t\t\t<EnablePREfast>" << (configuration == "Analysis" ? "true" : "false") << "</EnablePREfast>\n"
+ << "\t\t\t<EnablePREfast>false</EnablePREfast>\n"
<< "\t\t</ClCompile>\n"
<< "\t\t<Lib>\n"
<< "\t\t\t<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>\n"
More information about the Scummvm-git-logs
mailing list