diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-06-02 11:34:31 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-06-08 10:25:35 (GMT) |
commit | 8d934d861be8c2a8b43d4c421715fb1e8c0c54fd (patch) | |
tree | 35ff59319c575fc206915fad3b02335066af0750 /Source/cmExportFileGenerator.cxx | |
parent | 026f65d284deaea9f2dba41ed956fabf84e17b6d (diff) | |
download | CMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.zip CMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.tar.gz CMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.tar.bz2 |
cmPropertyMap: Make std::map container private
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index a12e0c4..6621797 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -1205,12 +1205,9 @@ bool cmExportFileGenerator::PopulateExportProperties( std::string& errorMessage) { auto& targetProperties = gte->Target->GetProperties(); - const auto& exportProperties = targetProperties.find("EXPORT_PROPERTIES"); - if (exportProperties != targetProperties.end()) { - std::vector<std::string> propsToExport; - cmSystemTools::ExpandListArgument(exportProperties->second.GetValue(), - propsToExport); - for (auto& prop : propsToExport) { + if (const char* exportProperties = + targetProperties.GetPropertyValue("EXPORT_PROPERTIES")) { + for (auto& prop : cmSystemTools::ExpandedListArgument(exportProperties)) { /* Black list reserved properties */ if (cmSystemTools::StringStartsWith(prop, "IMPORTED_") || cmSystemTools::StringStartsWith(prop, "INTERFACE_")) { |