[Scummvm-cvs-logs] SF.net SVN: scummvm:[53566] scummvm/trunk/tools/create_msvc/create_msvc.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Mon Oct 18 13:09:36 CEST 2010


Revision: 53566
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53566&view=rev
Author:   thebluegr
Date:     2010-10-18 11:09:36 +0000 (Mon, 18 Oct 2010)

Log Message:
-----------
CREATE_MSVC: Added a missing check for sword25 and reordered some engine checks alphabetically

Modified Paths:
--------------
    scummvm/trunk/tools/create_msvc/create_msvc.cpp

Modified: scummvm/trunk/tools/create_msvc/create_msvc.cpp
===================================================================
--- scummvm/trunk/tools/create_msvc/create_msvc.cpp	2010-10-18 10:58:22 UTC (rev 53565)
+++ scummvm/trunk/tools/create_msvc/create_msvc.cpp	2010-10-18 11:09:36 UTC (rev 53566)
@@ -2023,7 +2023,7 @@
 	std::map<std::string, std::string>::iterator warnings = _projectWarnings.find(name);
 
 	// Nothing to add here, move along!
-	if (name != "scummvm" && name != "tinsel" && warnings == _projectWarnings.end())
+	if (name != "scummvm" && name != "sword25" && name != "tinsel" && warnings == _projectWarnings.end())
 		return;
 
 	project << "\t<ItemDefinitionGroup Condition=\"'$(Configuration)|$(Platform)'=='" << (isRelease ? "Release" : "Debug") << "|" << (isWin32 ? "Win32" : "x64") << "'\">\n"
@@ -2033,12 +2033,12 @@
 	if (name == "scummvm") {
 		project << "\t\t\t<DisableLanguageExtensions>false</DisableLanguageExtensions>\n";
 	} else {
+		if (name == "sword25")
+			project << "\t\t\t<DisableLanguageExtensions>false</DisableLanguageExtensions>\n";
+
 		if (name == "tinsel" && !isRelease)
 			project << "\t\t\t<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>\n";
 
-		if (name == "sword25")
-			project << "\t\t\t<DisableLanguageExtensions>false</DisableLanguageExtensions>\n";
-
 		if (warnings != _projectWarnings.end())
 			project << "\t\t\t<DisableSpecificWarnings>" << warnings->second << ";%(DisableSpecificWarnings)</DisableSpecificWarnings>\n";
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list