summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorGregor Jasny <gjasny@googlemail.com>2015-02-11 19:48:43 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-12 18:35:31 (GMT)
commitbf8f9c29e745933d5732f4481669c38ba8bdc3fc (patch)
treecaf2264967f14adddcdeb3579abfae84a12f17c9 /Source/cmGlobalXCodeGenerator.cxx
parent0ec1f45a138bd7a9ad618f6e9dfa077a6bc8533c (diff)
downloadCMake-bf8f9c29e745933d5732f4481669c38ba8bdc3fc.zip
CMake-bf8f9c29e745933d5732f4481669c38ba8bdc3fc.tar.gz
CMake-bf8f9c29e745933d5732f4481669c38ba8bdc3fc.tar.bz2
Xcode: Teach XCODE_ATTRIBUTE target properties about generator expressions
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 30ed134..aea134e 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2436,8 +2436,11 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
if (!attribute.empty())
{
+ cmGeneratorExpression ge;
+ std::string processed = ge.Parse(i->second.GetValue())
+ ->Evaluate(this->CurrentMakefile, configName);
buildSettings->AddAttribute(attribute.c_str(),
- this->CreateString(i->second.GetValue()));
+ this->CreateString(processed));
}
}
}