- 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.

svn path=/trunk/; revision=44401
This commit is contained in:
Ged Murphy 2009-12-04 11:33:17 +00:00
parent 649c865a46
commit bb32402355

View file

@ -138,12 +138,15 @@ void MSVCBackend::ProcessModules()
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;
}
}