mirror of
https://github.com/reactos/reactos.git
synced 2025-07-07 06:11:22 +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 &module = *ProjectNode.modules[i];
|
||||||
|
|
||||||
module.guid = _gen_guid();
|
module.guid = _gen_guid();
|
||||||
|
|
||||||
|
if (configuration.VSProjectVersion == "6.00")
|
||||||
this->_generate_dsp ( module );
|
this->_generate_dsp ( module );
|
||||||
|
else
|
||||||
this->_generate_vcproj ( module );
|
this->_generate_vcproj ( module );
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -189,8 +189,7 @@ main ( int argc, char** argv )
|
||||||
if ( !ParseArguments ( argc, argv ) )
|
if ( !ParseArguments ( argc, argv ) )
|
||||||
{
|
{
|
||||||
printf ( "Generates project files for buildsystems\n\n" );
|
printf ( "Generates project files for buildsystems\n\n" );
|
||||||
printf ( " rbuild [switches] buildsystem\n" );
|
printf ( " rbuild [switches] buildsystem\n\n" );
|
||||||
printf ( " rbuild msvc\n" );
|
|
||||||
printf ( "Switches:\n" );
|
printf ( "Switches:\n" );
|
||||||
printf ( " -v Be verbose.\n" );
|
printf ( " -v Be verbose.\n" );
|
||||||
printf ( " -c Clean as you go. Delete generated files as soon as they are not\n" );
|
printf ( " -c Clean as you go. Delete generated files as soon as they are not\n" );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue