create only the project files specified on cmdline

svn path=/trunk/; revision=18631
This commit is contained in:
Christoph von Wittich 2005-10-20 14:27:02 +00:00
parent 613156caf8
commit db95f67404
3 changed files with 9 additions and 7 deletions

View file

@ -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 );

View file

@ -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" );