diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-30 21:01:02 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-06 16:25:10 (GMT) |
commit | 3429541e1c853207ae77ac033f04888e6c84ebf8 (patch) | |
tree | 84b10857792216ea4c1765507e1a69a4c999b755 | |
parent | 7461d67cf37a40ce5a6c20e8eaf4cbfff1c7d27e (diff) | |
download | CMake-3429541e1c853207ae77ac033f04888e6c84ebf8.zip CMake-3429541e1c853207ae77ac033f04888e6c84ebf8.tar.gz CMake-3429541e1c853207ae77ac033f04888e6c84ebf8.tar.bz2 |
export: Rename some variables to reflect content type.
This method is used with a list of languages.
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 18 | ||||
-rw-r--r-- | Source/cmExportFileGenerator.h | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index 2a87e4f..4543f79 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -825,36 +825,36 @@ cmExportFileGenerator ::SetImportLinkProperty(std::string const& suffix, cmTarget* target, const char* propName, - std::vector<std::string> const& libs, + std::vector<std::string> const& entries, ImportPropertyMap& properties, std::vector<std::string>& missingTargets ) { - // Skip the property if there are no libraries. - if(libs.empty()) + // Skip the property if there are no entries. + if(entries.empty()) { return; } // Construct the property value. - std::string link_libs; + std::string link_entries; const char* sep = ""; - for(std::vector<std::string>::const_iterator li = libs.begin(); - li != libs.end(); ++li) + for(std::vector<std::string>::const_iterator li = entries.begin(); + li != entries.end(); ++li) { // Separate this from the previous entry. - link_libs += sep; + link_entries += sep; sep = ";"; std::string temp = *li; this->AddTargetNamespace(temp, target, missingTargets); - link_libs += temp; + link_entries += temp; } // Store the property. std::string prop = propName; prop += suffix; - properties[prop] = link_libs; + properties[prop] = link_entries; } diff --git a/Source/cmExportFileGenerator.h b/Source/cmExportFileGenerator.h index 6fd23b0..1438f4d 100644 --- a/Source/cmExportFileGenerator.h +++ b/Source/cmExportFileGenerator.h @@ -82,7 +82,7 @@ protected: std::vector<std::string>& missingTargets); void SetImportLinkProperty(std::string const& suffix, cmTarget* target, const char* propName, - std::vector<std::string> const& libs, + std::vector<std::string> const& entries, ImportPropertyMap& properties, std::vector<std::string>& missingTargets); |