diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-14 15:23:37 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-14 15:23:37 (GMT) |
commit | e4b5de6377bf144fadb7760efc3748f227807c25 (patch) | |
tree | 3fe22fd91af8f46f5cf475c99dfe533fa8a002d5 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 3aa23ce6ebb4df16428ef5619958abaa3d9710dc (diff) | |
download | CMake-e4b5de6377bf144fadb7760efc3748f227807c25.zip CMake-e4b5de6377bf144fadb7760efc3748f227807c25.tar.gz CMake-e4b5de6377bf144fadb7760efc3748f227807c25.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 104ba19..4b42796 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -906,7 +906,7 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase, 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 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase, 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"; |