[cmake-commits] alex committed cmGlobalXCodeGenerator.cxx 1.148 1.149
cmGlobalXCodeGenerator.h 1.46 1.47
cmLocalVisualStudio7Generator.cxx 1.190 1.191 cmTarget.cxx 1.137 1.138
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu May 10 11:38:25 EDT 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv30762
Modified Files:
cmGlobalXCodeGenerator.cxx cmGlobalXCodeGenerator.h
cmLocalVisualStudio7Generator.cxx cmTarget.cxx
Log Message:
STYLE: fix line length
Alex
Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -d -r1.148 -r1.149
--- cmGlobalXCodeGenerator.cxx 10 May 2007 15:16:06 -0000 1.148
+++ cmGlobalXCodeGenerator.cxx 10 May 2007 15:38:23 -0000 1.149
@@ -959,7 +959,8 @@
std::vector<cmCustomCommand>
const & commands,
const char* configName,
- const std::map<cmStdString, cmStdString>& multipleOutputPairs
+ const std::map<cmStdString,
+ cmStdString>& multipleOutputPairs
)
{
std::string makefileName=makefileBasename;
@@ -1487,7 +1488,8 @@
if(install_name_dir.find(".framework") != install_name_dir.npos)
{
install_name_dir = install_name_dir + "/..";
- install_name_dir = cmSystemTools::CollapseFullPath(install_name_dir.c_str());
+ install_name_dir =
+ cmSystemTools::CollapseFullPath(install_name_dir.c_str());
std::cerr << "new install name " << install_name_dir << "\n";
}
}
Index: cmLocalVisualStudio7Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio7Generator.cxx,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -d -r1.190 -r1.191
--- cmLocalVisualStudio7Generator.cxx 9 May 2007 18:41:38 -0000 1.190
+++ cmLocalVisualStudio7Generator.cxx 10 May 2007 15:38:23 -0000 1.191
@@ -1283,7 +1283,8 @@
{
// Write a rule for the output generated by this command.
const char* sep = "";
- for(std::vector<std::string>::const_iterator o = command.GetOutputs().begin();
+ for(std::vector<std::string>::const_iterator o =
+ command.GetOutputs().begin();
o != command.GetOutputs().end();
++o)
{
Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -d -r1.137 -r1.138
--- cmTarget.cxx 9 May 2007 13:35:59 -0000 1.137
+++ cmTarget.cxx 10 May 2007 15:38:23 -0000 1.138
@@ -416,7 +416,7 @@
cli != commands.end();
++cli )
{
- for ( cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin();
+ for(cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin();
cit!=cli->GetCommandLines().end();
++cit )
{
@@ -584,7 +584,9 @@
outsf->GetCustomCommand()->AppendDepends(automaticTargetDepends);
// add its dependencies to the list to check
- for (unsigned int i = 0; i < outsf->GetCustomCommand()->GetDepends().size(); ++i)
+ for (unsigned int i = 0;
+ i < outsf->GetCustomCommand()->GetDepends().size();
+ ++i)
{
const std::string& fullName
= outsf->GetCustomCommand()->GetDepends()[i];
Index: cmGlobalXCodeGenerator.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.h,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- cmGlobalXCodeGenerator.h 9 May 2007 12:25:45 -0000 1.46
+++ cmGlobalXCodeGenerator.h 10 May 2007 15:38:23 -0000 1.47
@@ -109,7 +109,7 @@
void CreateCustomRulesMakefile(const char* makefileBasename,
cmTarget& target,
- std::vector<cmCustomCommand> const & commands,
+ std::vector<cmCustomCommand> const & commands,
const char* configName,
const std::map<cmStdString, cmStdString>&
multipleOutputPairs
More information about the Cmake-commits
mailing list