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/cmMakefileTargetGenerator.cxx | |
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/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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. |