[ros-diffs] [gedmurphy] 44401: - Don't listen to me, my 99.9% assurance that the new backend architecture wouldn't work was wrong. Who'd have thunk it?? - Remove the 'test' file name bug I put in to stop people overwriting their vcproj files. - Don't forget object cleanup Ged ... this isn't .NET. - 'make msvc#' is now working again.

gedmurphy at svn.reactos.org gedmurphy at svn.reactos.org
Fri Dec 4 12:33:17 CET 2009


Author: gedmurphy
Date: Fri Dec  4 12:33:17 2009
New Revision: 44401

URL: http://svn.reactos.org/svn/reactos?rev=44401&view=rev
Log:
- Don't listen to me, my 99.9% assurance that the new backend architecture wouldn't work was wrong. Who'd have thunk it??
- Remove the 'test' file name bug I put in to stop people overwriting their vcproj files.
- Don't forget object cleanup Ged ... this isn't .NET.
- 'make msvc#' is now working again.

Modified:
    trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp

Modified: trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp?rev=44401&r1=44400&r2=44401&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp [iso-8859-1] (original)
+++ trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp [iso-8859-1] Fri Dec  4 12:33:17 2009
@@ -138,12 +138,15 @@
 
 		ProjMaker *projMaker;
 
+		string vcproj_file = VcprojFileName(module);
+
 		if (configuration.VSProjectVersion == "10.00")
-			projMaker = new VCXProjMaker( configuration, m_configurations, "test" );
+			projMaker = new VCXProjMaker( configuration, m_configurations, vcproj_file );
 		else
-			projMaker = new VCProjMaker( configuration, m_configurations, "test" );
+			projMaker = new VCProjMaker( configuration, m_configurations, vcproj_file );
 
 		projMaker->_generate_proj_file ( module );
+		delete projMaker;
 	}
 }
 




More information about the Ros-diffs mailing list