summaryrefslogtreecommitdiffstats
path: root/Source/cmExportFileGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-01-06 12:49:20 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-01-24 19:36:04 (GMT)
commit2fb2c32f9b304bc71b039754f9b9170fd6f27a6f (patch)
tree6afedbc38336f2cc032b81051fd3b9cadc23d5aa /Source/cmExportFileGenerator.cxx
parentcd66b9131d76984795c8a77353d6afa33abb54f7 (diff)
downloadCMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.zip
CMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.tar.gz
CMake-2fb2c32f9b304bc71b039754f9b9170fd6f27a6f.tar.bz2
Add the COMPATIBLE_INTERFACE_STRING property.
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r--Source/cmExportFileGenerator.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx
index ef1fc5f..96e0aea 100644
--- a/Source/cmExportFileGenerator.cxx
+++ b/Source/cmExportFileGenerator.cxx
@@ -217,6 +217,9 @@ void getCompatibleInterfaceProperties(cmTarget *target,
getPropertyContents(li->Target,
"COMPATIBLE_INTERFACE_BOOL",
ifaceProperties);
+ getPropertyContents(li->Target,
+ "COMPATIBLE_INTERFACE_STRING",
+ ifaceProperties);
}
}
@@ -227,10 +230,13 @@ void cmExportFileGenerator::PopulateCompatibleInterfaceProperties(
{
this->PopulateInterfaceProperty("COMPATIBLE_INTERFACE_BOOL",
target, properties);
+ this->PopulateInterfaceProperty("COMPATIBLE_INTERFACE_STRING",
+ target, properties);
std::set<std::string> ifaceProperties;
getPropertyContents(target, "COMPATIBLE_INTERFACE_BOOL", ifaceProperties);
+ getPropertyContents(target, "COMPATIBLE_INTERFACE_STRING", ifaceProperties);
getCompatibleInterfaceProperties(target, ifaceProperties, 0);