mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
we do still need to generate dsw files for msvc6
svn path=/trunk/; revision=18638
This commit is contained in:
parent
ffbb6a9873
commit
179739c746
1 changed files with 10 additions and 3 deletions
|
@ -53,8 +53,11 @@ MSVCBackend::MSVCBackend(Project &project,
|
|||
|
||||
void MSVCBackend::Process()
|
||||
{
|
||||
|
||||
string filename_sln = ProjectNode.name + ".sln";
|
||||
string filename_sln ( ProjectNode.name );
|
||||
if ( configuration.VSProjectVersion == "6.00" )
|
||||
filename_sln += ".dsw";
|
||||
else
|
||||
filename_sln += ".sln";
|
||||
printf ( "Creating MSVC workspace: %s\n", filename_sln.c_str() );
|
||||
|
||||
ProcessModules();
|
||||
|
@ -66,7 +69,11 @@ void MSVCBackend::Process()
|
|||
return;
|
||||
}
|
||||
|
||||
_generate_sln ( m_slnFile );
|
||||
if ( configuration.VSProjectVersion == "6.00" )
|
||||
_generate_wine_dsw ( m_slnFile );
|
||||
else
|
||||
_generate_sln ( m_slnFile );
|
||||
|
||||
fclose ( m_slnFile );
|
||||
printf ( "Done.\n" );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue