summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeBlocksGenerator.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-06 17:24:42 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-08-06 17:24:42 (GMT)
commite41e2e6b1a3a801afe45d96663ccd53179776fa8 (patch)
treedb5cde735a300a919241a8870bfb9de5e11a4768 /Source/cmExtraCodeBlocksGenerator.cxx
parentb82b47e3299948a7d489e20659c960f331ba72de (diff)
downloadCMake-e41e2e6b1a3a801afe45d96663ccd53179776fa8.zip
CMake-e41e2e6b1a3a801afe45d96663ccd53179776fa8.tar.gz
CMake-e41e2e6b1a3a801afe45d96663ccd53179776fa8.tar.bz2
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx23
1 files changed, 13 insertions, 10 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index 4a2850d..ddfd32e 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -89,8 +89,7 @@ void cmExtraCodeBlocksGenerator::Generate()
" <Workspace title=\""<<workspaceName<<"\">\n";
bool firstProject = true;
- // for each sub project in the project create
- // a kdevelop project
+ // for each sub project in the project create a codeblocks project
for (std::map<cmStdString, std::vector<cmLocalGenerator*> >::const_iterator
it = this->GlobalGenerator->GetProjectMap().begin();
it!= this->GlobalGenerator->GetProjectMap().end();
@@ -207,21 +206,25 @@ void cmExtraCodeBlocksGenerator
case cmTarget::MODULE_LIBRARY:
// case cmTarget::UTILITY:
fout<<" <Target title=\""<<ti->first<<"\">\n"
- " <Option output=\""<<ti->second.GetLocation(0)<<"\" prefix_auto=\"0\" extension_auto=\"0\" />\n"
- " <Option working_dir=\""<<makefile->GetStartOutputDirectory()<<"\" />\n"
+ " <Option output=\""<<ti->second.GetLocation(0)
+ <<"\" prefix_auto=\"0\" extension_auto=\"0\" />\n"
+ " <Option working_dir=\""<<makefile->GetStartOutputDirectory()
+ <<"\" />\n"
" <Option type=\"0\" />\n"
" <Option compiler=\"gcc\" />\n"
" <MakeCommands>\n";
- fout<<" <Build command=\""<<make<<" -f "<<makefile->GetStartOutputDirectory()<<"/Makefile "<<ti->first<<"\" />\n";
- fout<<" <CompileFile command=\""<<make<<" -f "<<makefile->GetStartOutputDirectory()<<"/Makefile "<<ti->first<<"\" />\n";
- fout<<" <Clean command=\""<<make<<" -f "<<makefile->GetStartOutputDirectory()<<"/Makefile clean\" />\n";
- fout<<" <DistClean command=\""<<make<<" -f "<<makefile->GetStartOutputDirectory()<<"/Makefile clean\" />\n";
+ fout<<" <Build command=\""<<make<<" -f "
+ <<makefile->GetStartOutputDirectory()<<"/Makefile "<<ti->first<<"\" />\n";
+ fout<<" <CompileFile command=\""<<make<<" -f "
+ <<makefile->GetStartOutputDirectory()<<"/Makefile "<<ti->first<<"\" />\n";
+ fout<<" <Clean command=\""<<make<<" -f "
+ <<makefile->GetStartOutputDirectory()<<"/Makefile clean\" />\n";
+ fout<<" <DistClean command=\""<<make<<" -f "
+ <<makefile->GetStartOutputDirectory()<<"/Makefile clean\" />\n";
fout<<" </MakeCommands>\n"
" </Target>\n";
-// if (ti->second.GetType()==cmTarget::UTILITY) fout<<"****** UTILITY \n";
-// if (ti->second.GetType()==cmTarget::GLOBAL_TARGET) fout<<"****** GLOBAL_YESTERDAY \n";
break;
default:
break;