[Scummvm-cvs-logs] scummvm master -> b830f68bacd18f51f4dd912ce3b54ec47d63f31d

lordhoto lordhoto at gmail.com
Wed Aug 14 02:03:35 CEST 2013


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:
b830f68bac DEVTOOLS: Disable builtin theme in MSVC 2005 and 2008 in create_project.


Commit: b830f68bacd18f51f4dd912ce3b54ec47d63f31d
    https://github.com/scummvm/scummvm/commit/b830f68bacd18f51f4dd912ce3b54ec47d63f31d
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-08-13T17:01:03-07:00

Commit Message:
DEVTOOLS: Disable builtin theme in MSVC 2005 and 2008 in create_project.

This is a copy of d089658fb84f67652e9569bc03c76bcc65e7b881 for older MSVC
versions. Thanks to Strangerke for noticing.

Changed paths:
    devtools/create_project/visualstudio.cpp



diff --git a/devtools/create_project/visualstudio.cpp b/devtools/create_project/visualstudio.cpp
index 23225d3..17e378f 100644
--- a/devtools/create_project/visualstudio.cpp
+++ b/devtools/create_project/visualstudio.cpp
@@ -286,7 +286,7 @@ void VisualStudioProvider::createBuildProp(const BuildSetup &setup, bool isRelea
 	if (isRelease) {
 		properties << "\t\tEnableIntrinsicFunctions=\"true\"\n"
 		              "\t\tWholeProgramOptimization=\"true\"\n"
-		              "\t\tPreprocessorDefinitions=\"WIN32;RELEASE_BUILD\"\n"
+		              "\t\tPreprocessorDefinitions=\"WIN32;DISABLE_GUI_BUILTIN_THEME;RELEASE_BUILD\"\n"
 		              "\t\tStringPooling=\"true\"\n"
 		              "\t\tBufferSecurityCheck=\"false\"\n"
 		              "\t\tDebugInformationFormat=\"0\"\n"
@@ -300,7 +300,7 @@ void VisualStudioProvider::createBuildProp(const BuildSetup &setup, bool isRelea
 		              "\t\tSetChecksum=\"true\"\n";
 	} else {
 		properties << "\t\tOptimization=\"0\"\n"
-		              "\t\tPreprocessorDefinitions=\"WIN32\"\n"
+		              "\t\tPreprocessorDefinitions=\"WIN32;DISABLE_GUI_BUILTIN_THEME\"\n"
 		              "\t\tMinimalRebuild=\"true\"\n"
 		              "\t\tBasicRuntimeChecks=\"3\"\n"
 		              "\t\tRuntimeLibrary=\"1\"\n"






More information about the Scummvm-git-logs mailing list