diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-06-15 15:51:51 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-06-15 15:51:51 (GMT) |
commit | 6071052835552a7dbdf7bd4f38263c6f206b26dd (patch) | |
tree | a8449abd8ac5803f2092cef86cbeb019cb0502f6 /Source | |
parent | 4c2c2cfd680afb1e34705e07c15e9a1bbe164cf9 (diff) | |
download | CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.zip CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.gz CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.bz2 |
ENH: fix linelength
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalKdevelopGenerator.cxx | 6 | ||||
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 6 | ||||
-rw-r--r-- | Source/cmake.h | 3 |
3 files changed, 10 insertions, 5 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx index fa58fb6..3c3977b 100644 --- a/Source/cmGlobalKdevelopGenerator.cxx +++ b/Source/cmGlobalKdevelopGenerator.cxx @@ -162,7 +162,8 @@ bool cmGlobalKdevelopGenerator tmp=(*si)->GetFullPath(); cmSystemTools::ReplaceString(tmp, projectDir.c_str(), ""); if ((tmp[0]!='/') && - (strstr(tmp.c_str(), cmake::GetCMakeFilesDirectoryPostSlash())==0)) + (strstr(tmp.c_str(), + cmake::GetCMakeFilesDirectoryPostSlash())==0)) { files.insert(tmp); } @@ -173,7 +174,8 @@ bool cmGlobalKdevelopGenerator tmp=*lt; cmSystemTools::ReplaceString(tmp, projectDir.c_str(), ""); if ((tmp[0]!='/') && - (strstr(tmp.c_str(), cmake::GetCMakeFilesDirectoryPostSlash())==0)) + (strstr(tmp.c_str(), + cmake::GetCMakeFilesDirectoryPostSlash())==0)) { files.insert(tmp.c_str()); } diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 03e55a3..9ca09df 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1461,7 +1461,8 @@ void cmLocalUnixMakefileGenerator3 std::string mf2Dir = cmake::GetCMakeFilesDirectoryPostSlash(); mf2Dir += "Makefile2"; - commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),dir.c_str())); + commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(), + dir.c_str())); this->CreateCDCommand(commands, this->Makefile->GetHomeOutputDirectory(), this->Makefile->GetStartOutputDirectory()); @@ -1486,7 +1487,8 @@ void cmLocalUnixMakefileGenerator3 dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE); commands.clear(); depends.clear(); - commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),dir.c_str())); + commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(), + dir.c_str())); this->CreateCDCommand(commands, this->Makefile->GetHomeOutputDirectory(), this->Makefile->GetStartOutputDirectory()); diff --git a/Source/cmake.h b/Source/cmake.h index 516d981..71a7713 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -69,7 +69,8 @@ class cmake ///! construct an instance of cmake static const char *GetCMakeFilesDirectory() {return "/CMakeFiles";}; - static const char *GetCMakeFilesDirectoryPostSlash() {return "CMakeFiles/";}; + static const char *GetCMakeFilesDirectoryPostSlash() { + return "CMakeFiles/";}; //@{ /** |