[Scummvm-cvs-logs] SF.net SVN: scummvm:[54681] scummvm/trunk/tools/create_project/visualstudio .cpp

littleboy at users.sourceforge.net littleboy at users.sourceforge.net
Tue Nov 30 17:41:49 CET 2010


Revision: 54681
          http://scummvm.svn.sourceforge.net/scummvm/?rev=54681&view=rev
Author:   littleboy
Date:     2010-11-30 16:41:48 +0000 (Tue, 30 Nov 2010)

Log Message:
-----------
TOOLS: Fix regression in create_project MSVC9 project creation

Debug build configurations were missing </Configuration> ending elements
(see comments of bug #3121962)

Modified Paths:
--------------
    scummvm/trunk/tools/create_project/visualstudio.cpp

Modified: scummvm/trunk/tools/create_project/visualstudio.cpp
===================================================================
--- scummvm/trunk/tools/create_project/visualstudio.cpp	2010-11-30 15:35:22 UTC (rev 54680)
+++ scummvm/trunk/tools/create_project/visualstudio.cpp	2010-11-30 16:41:48 UTC (rev 54681)
@@ -78,9 +78,9 @@
 				   "\t\t\t/>\n" \
 				   "\t\t\t<Tool\tName=\"VCPostBuildEventTool\"\n" \
 				   "\t\t\t\tCommandLine=\"" << getPostBuildEvent(isWin32) << "\"\n" \
-				   "\t\t\t/>\n" \
-				   "\t\t</Configuration>\n"; \
+				   "\t\t\t/>\n"; \
 	} \
+	project << "\t\t</Configuration>\n"; \
 }
 
 #define OUTPUT_CONFIGURATION(config, platform, props) { \


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