mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
create only the project files specified on cmdline
svn path=/trunk/; revision=18631
This commit is contained in:
parent
613156caf8
commit
db95f67404
3 changed files with 9 additions and 7 deletions
|
@ -92,7 +92,10 @@ void MSVCBackend::ProcessModules()
|
|||
Module &module = *ProjectNode.modules[i];
|
||||
|
||||
module.guid = _gen_guid();
|
||||
|
||||
if (configuration.VSProjectVersion == "6.00")
|
||||
this->_generate_dsp ( module );
|
||||
else
|
||||
this->_generate_vcproj ( module );
|
||||
|
||||
|
||||
|
|
|
@ -189,8 +189,7 @@ main ( int argc, char** argv )
|
|||
if ( !ParseArguments ( argc, argv ) )
|
||||
{
|
||||
printf ( "Generates project files for buildsystems\n\n" );
|
||||
printf ( " rbuild [switches] buildsystem\n" );
|
||||
printf ( " rbuild msvc\n" );
|
||||
printf ( " rbuild [switches] buildsystem\n\n" );
|
||||
printf ( "Switches:\n" );
|
||||
printf ( " -v Be verbose.\n" );
|
||||
printf ( " -c Clean as you go. Delete generated files as soon as they are not\n" );
|
||||
|
|
Loading…
Reference in a new issue