diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-06 12:49:20 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-01-24 19:36:04 (GMT) |
commit | 2fb2c32f9b304bc71b039754f9b9170fd6f27a6f (patch) | |
tree | 6afedbc38336f2cc032b81051fd3b9cadc23d5aa /Source/cmGeneratorExpressionEvaluator.cxx | |
parent | cd66b9131d76984795c8a77353d6afa33abb54f7 (diff) | |
download | CMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.zip CMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.tar.gz CMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.tar.bz2 |
Add the COMPATIBLE_INTERFACE_STRING property.
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluator.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionEvaluator.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGeneratorExpressionEvaluator.cxx b/Source/cmGeneratorExpressionEvaluator.cxx index c468c39..0c61a12 100644 --- a/Source/cmGeneratorExpressionEvaluator.cxx +++ b/Source/cmGeneratorExpressionEvaluator.cxx @@ -462,6 +462,13 @@ static const struct TargetPropertyNode : public cmGeneratorExpressionNode propertyName, context->Config) ? "1" : "0"; } + if (target->IsLinkInterfaceDependentStringProperty(propertyName, + context->Config)) + { + return target->GetLinkInterfaceDependentStringProperty( + propertyName, + context->Config); + } return std::string(); } |