summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-09-18 21:05:45 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-09-18 21:05:45 (GMT)
commite07cf9adc407c72897dbbf6440004ea92110fc8d (patch)
treea6682f410ab792695b0f3a505298d74d99fbf7f1 /Source
parent0eba9b638f95a7574d66b70c321680555e72ae0f (diff)
downloadCMake-e07cf9adc407c72897dbbf6440004ea92110fc8d.zip
CMake-e07cf9adc407c72897dbbf6440004ea92110fc8d.tar.gz
CMake-e07cf9adc407c72897dbbf6440004ea92110fc8d.tar.bz2
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx22
1 files changed, 16 insertions, 6 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index 6e0d1c9..2fe4beb 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -188,8 +188,10 @@ void cmExtraCodeBlocksGenerator
makefileName.c_str());
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 object_output=\"./\" />\n"
" <Option type=\"" << cbTargetType << "\" />\n"
" <Option compiler=\"" << compiler << "\" />\n"
@@ -207,10 +209,18 @@ void cmExtraCodeBlocksGenerator
fout<<" </Compiler>\n"
" <MakeCommands>\n"
- " <Build command=\"" << this->BuildMakeCommand(make, makefileName.c_str(), ti->first.c_str()) << "\" />\n"
- " <CompileFile command=\"" << this->BuildMakeCommand(make, makefileName.c_str(), "&quot;$file&quot;") << "\" />\n"
- " <Clean command=\"" << this->BuildMakeCommand(make, makefileName.c_str(), "clean") << "\" />\n"
- " <DistClean command=\"" << this->BuildMakeCommand(make, makefileName.c_str(), "clean") << "\" />\n"
+ " <Build command=\""
+ << this->BuildMakeCommand(make, makefileName.c_str(), ti->first.c_str())
+ << "\" />\n"
+ " <CompileFile command=\""
+ << this->BuildMakeCommand(make, makefileName.c_str(),"&quot;$file&quot;")
+ << "\" />\n"
+ " <Clean command=\""
+ << this->BuildMakeCommand(make, makefileName.c_str(), "clean")
+ << "\" />\n"
+ " <DistClean command=\""
+ << this->BuildMakeCommand(make, makefileName.c_str(), "clean")
+ << "\" />\n"
" </MakeCommands>\n"
" </Target>\n";
}