diff options
author | Brad King <brad.king@kitware.com> | 2009-10-23 12:02:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-23 12:02:24 (GMT) |
commit | 867a1cc12c9212b286efce0647a510486501c1a5 (patch) | |
tree | fe5abcaef2fc4c5381a14e069d8b654d25db2466 /Source | |
parent | 11d85a57487c9dfd86c9b9e13858cdf1915777ed (diff) | |
download | CMake-867a1cc12c9212b286efce0647a510486501c1a5.zip CMake-867a1cc12c9212b286efce0647a510486501c1a5.tar.gz CMake-867a1cc12c9212b286efce0647a510486501c1a5.tar.bz2 |
Fix line-too-long style violations
The commit "Define per-target OSX_ARCHITECTURES property" introduced
some long lines. This wraps them into multiple shorter lines.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalGenerator.h | 3 | ||||
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 3 | ||||
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 3 | ||||
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 029d315..becdfff 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -134,7 +134,8 @@ public: #ifdef __APPLE__ - void AddArchitectureFlags(std::string& flags, cmTarget* target, const char *lang, const char* config); + void AddArchitectureFlags(std::string& flags, cmTarget* target, + const char *lang, const char* config); #endif /* __APPLE__ */ void AddLanguageFlags(std::string& flags, const char* lang, diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index 49b9d75..e7c4a7d 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -230,7 +230,8 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink) this->AddFeatureFlags(flags, linkLanguage); #ifdef __APPLE__ - this->LocalGenerator->AddArchitectureFlags(flags, this->Target, linkLanguage, this->ConfigName); + this->LocalGenerator->AddArchitectureFlags(flags, this->Target, + linkLanguage, this->ConfigName); #endif /* __APPLE__ */ // Add target-specific linker flags. diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 3cd9bfe..f351174 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -683,7 +683,8 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules this->AddFeatureFlags(langFlags, linkLanguage); #ifdef __APPLE__ - this->LocalGenerator->AddArchitectureFlags(langFlags, this->Target, linkLanguage, this->ConfigName); + this->LocalGenerator->AddArchitectureFlags(langFlags, this->Target, + linkLanguage, this->ConfigName); #endif /* __APPLE__ */ // remove any language flags that might not work with the diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 0a2e79e..dd45950 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -295,7 +295,8 @@ void cmMakefileTargetGenerator::WriteTargetLanguageFlags() this->AddFeatureFlags(flags, lang); #ifdef __APPLE__ - this->LocalGenerator->AddArchitectureFlags(flags, this->Target, lang, this->ConfigName); + this->LocalGenerator->AddArchitectureFlags(flags, this->Target, + lang, this->ConfigName); #endif /* __APPLE__ */ // Fortran-specific flags computed for this target. |