summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmLocalGenerator.h3
-rw-r--r--Source/cmMakefileExecutableTargetGenerator.cxx3
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.cxx3
-rw-r--r--Source/cmMakefileTargetGenerator.cxx3
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.