[cmake-commits] alex committed cmGlobalXCodeGenerator.cxx 1.150 1.151
cmLocalVisualStudio6Generator.cxx 1.122 1.123 cmTarget.cxx 1.138 1.139
cmake-commits at cmake.org
cmake-commits at cmake.org
Mon May 14 11:23:40 EDT 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv19362/Source
Modified Files:
cmGlobalXCodeGenerator.cxx cmLocalVisualStudio6Generator.cxx
cmTarget.cxx
Log Message:
STYLE: fix line lengths
Alex
Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- cmGlobalXCodeGenerator.cxx 11 May 2007 17:52:33 -0000 1.150
+++ cmGlobalXCodeGenerator.cxx 14 May 2007 15:23:37 -0000 1.151
@@ -906,7 +906,7 @@
std::string primaryOutput = this->ConvertToRelativeForMake(o->c_str());
for(++o; o != outputs.end(); ++o)
{
- std::string currentOutput =this->ConvertToRelativeForMake(o->c_str());
+ std::string currentOutput=this->ConvertToRelativeForMake(o->c_str());
multipleOutputPairs[currentOutput] = primaryOutput;
}
}
@@ -940,7 +940,8 @@
std::string makecmd = "make -C ";
makecmd += cdir;
makecmd += " -f ";
- makecmd += this->ConvertToRelativeForMake((makefile+"$CONFIGURATION").c_str());
+ makecmd += this->ConvertToRelativeForMake(
+ (makefile+"$CONFIGURATION").c_str());
if(!multipleOutputPairs.empty())
{
makecmd += " cmake_check_multiple_outputs";
Index: cmLocalVisualStudio6Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio6Generator.cxx,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- cmLocalVisualStudio6Generator.cxx 9 May 2007 18:41:38 -0000 1.122
+++ cmLocalVisualStudio6Generator.cxx 14 May 2007 15:23:37 -0000 1.123
@@ -618,7 +618,8 @@
}
// Write out the dependencies for the rule.
fout << "USERDEP__HACK=";
- for(std::vector<std::string>::const_iterator d=command.GetDepends().begin();
+ for(std::vector<std::string>::const_iterator d =
+ command.GetDepends().begin();
d != command.GetDepends().end();
++d)
{
Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -d -r1.138 -r1.139
--- cmTarget.cxx 10 May 2007 15:38:23 -0000 1.138
+++ cmTarget.cxx 14 May 2007 15:23:37 -0000 1.139
@@ -410,15 +410,17 @@
void
-cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
+cmTarget
+::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
{
for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin();
cli != commands.end();
++cli )
{
- for(cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin();
- cit!=cli->GetCommandLines().end();
- ++cit )
+ for(cmCustomCommandLines::const_iterator cit =
+ cli->GetCommandLines().begin();
+ cit!=cli->GetCommandLines().end();
+ ++cit )
{
std::string command = *cit->begin();
// see if we can find a target with this name
More information about the Cmake-commits
mailing list