[cmake-commits] alex committed cmExtraCodeBlocksGenerator.cxx 1.13 1.14

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Sep 18 17:05:48 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv32629

Modified Files:
	cmExtraCodeBlocksGenerator.cxx 
Log Message:

STYLE: fix line lengths

Alex


Index: cmExtraCodeBlocksGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExtraCodeBlocksGenerator.cxx,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- cmExtraCodeBlocksGenerator.cxx	18 Sep 2007 13:54:42 -0000	1.13
+++ cmExtraCodeBlocksGenerator.cxx	18 Sep 2007 21:05:45 -0000	1.14
@@ -188,8 +188,10 @@
                                                          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 @@
 
   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";
             }



More information about the Cmake-commits mailing list