diff options
author | Brad King <brad.king@kitware.com> | 2009-10-21 17:00:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-21 17:00:49 (GMT) |
commit | 2dc39b8c329425cb54e5e111e2b00d79caa1db36 (patch) | |
tree | 516539dab9c55976dbf95cdc6896abacaff4ae7a /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | 2f94a2c919ddb39f33c47b4baa7bd37e2ae4cacd (diff) | |
download | CMake-2dc39b8c329425cb54e5e111e2b00d79caa1db36.zip CMake-2dc39b8c329425cb54e5e111e2b00d79caa1db36.tar.gz CMake-2dc39b8c329425cb54e5e111e2b00d79caa1db36.tar.bz2 |
Define per-target OSX_ARCHITECTURES property
The CMAKE_OSX_ARCHITECTURES variable works only as a global setting.
This commit defines target properties
OSX_ARCHITECTURES
OSX_ARCHITECTURES_<CONFIG>
to specify OS X architectures on a per-target and per-configuration
basis. See issue #8725.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 4070a3b..3cd9bfe 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -682,6 +682,10 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules std::string langFlags; this->AddFeatureFlags(langFlags, linkLanguage); +#ifdef __APPLE__ + this->LocalGenerator->AddArchitectureFlags(langFlags, this->Target, linkLanguage, this->ConfigName); +#endif /* __APPLE__ */ + // remove any language flags that might not work with the // particular os if(forbiddenFlagVar) |