diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-15 23:16:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-19 13:31:29 (GMT) |
commit | 78bfee35d5bd5cba879d92eda4310d25bc54b30e (patch) | |
tree | b8263240be0775e713a985546a2176ca8ac49fb5 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 4f5384e75c6a00d110d3fa3f555a3f6a4f31bb46 (diff) | |
download | CMake-78bfee35d5bd5cba879d92eda4310d25bc54b30e.zip CMake-78bfee35d5bd5cba879d92eda4310d25bc54b30e.tar.gz CMake-78bfee35d5bd5cba879d92eda4310d25bc54b30e.tar.bz2 |
Make cmLocalGenerator::AddArchitectureFlags take a cmGeneratorTarget.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 5ac9070..599acd5 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1713,7 +1713,10 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target, // Set target-specific architectures. std::vector<std::string> archs; - target.GetAppleArchs(configName, archs); + { + cmGeneratorTarget *gtgt = this->GetGeneratorTarget(&target); + gtgt->GetAppleArchs(configName, archs); + } if(!archs.empty()) { // Enable ARCHS attribute. |