diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-25 09:35:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 06:44:23 (GMT) |
commit | 520ca0ff6c123250c633a3618459d0161cbc4683 (patch) | |
tree | d1d77c41acba19eb91e4a8e6ef359243a438324f /Source/cmExportTryCompileFileGenerator.cxx | |
parent | 3e3c754b8cc3af463dcea95000daf3a18b359b7a (diff) | |
download | CMake-520ca0ff6c123250c633a3618459d0161cbc4683.zip CMake-520ca0ff6c123250c633a3618459d0161cbc4683.tar.gz CMake-520ca0ff6c123250c633a3618459d0161cbc4683.tar.bz2 |
cmGeneratorTarget: Add API for property keys
Diffstat (limited to 'Source/cmExportTryCompileFileGenerator.cxx')
-rw-r--r-- | Source/cmExportTryCompileFileGenerator.cxx | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Source/cmExportTryCompileFileGenerator.cxx b/Source/cmExportTryCompileFileGenerator.cxx index 1daa67e..83127e7 100644 --- a/Source/cmExportTryCompileFileGenerator.cxx +++ b/Source/cmExportTryCompileFileGenerator.cxx @@ -105,16 +105,18 @@ cmExportTryCompileFileGenerator::PopulateProperties( ImportPropertyMap& properties, std::set<cmGeneratorTarget const*> &emitted) { - cmPropertyMap props = target->Target->GetProperties(); - for(cmPropertyMap::const_iterator i = props.begin(); i != props.end(); ++i) + std::vector<std::string> props = target->GetPropertyKeys(); + for(std::vector<std::string>::const_iterator i = props.begin(); + i != props.end(); ++i) { - properties[i->first] = i->second.GetValue(); - if(i->first.find("IMPORTED_LINK_INTERFACE_LIBRARIES") == 0 - || i->first.find("IMPORTED_LINK_DEPENDENT_LIBRARIES") == 0 - || i->first.find("INTERFACE_LINK_LIBRARIES") == 0) + properties[*i] = target->GetProperty(*i); + + if(i->find("IMPORTED_LINK_INTERFACE_LIBRARIES") == 0 + || i->find("IMPORTED_LINK_DEPENDENT_LIBRARIES") == 0 + || i->find("INTERFACE_LINK_LIBRARIES") == 0) { - std::string evalResult = this->FindTargets(i->first, + std::string evalResult = this->FindTargets(*i, target, emitted); std::vector<std::string> depends; |