mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
- 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:
parent
649c865a46
commit
bb32402355
1 changed files with 5 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue