mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 20:29:49 -05:00
@@ -1521,6 +1521,16 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
|
||||
extraLinkOptions += " ";
|
||||
extraLinkOptions += targetLinkFlags;
|
||||
}
|
||||
if(configName && *configName)
|
||||
{
|
||||
std::string linkFlagsVar = "LINK_FLAGS_";
|
||||
linkFlagsVar += cmSystemTools::UpperCase(configName);
|
||||
if(const char* linkFlags = target.GetProperty(linkFlagsVar.c_str()))
|
||||
{
|
||||
extraLinkOptions += " ";
|
||||
extraLinkOptions += linkFlags;
|
||||
}
|
||||
}
|
||||
|
||||
// Set target-specific architectures.
|
||||
std::vector<std::string> archs;
|
||||
|
||||
Reference in New Issue
Block a user