diff options
author | Brad King <brad.king@kitware.com> | 2014-06-16 13:38:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 13:22:07 (GMT) |
commit | edce43514d854a84d2a00c975268f898bd1dda45 (patch) | |
tree | bec0a19c256153bcca1cd84ecc7c97f2d455c3f1 /Source/cmExportFileGenerator.h | |
parent | 097be4139df044c86daadb665ec224ee66e6b3bb (diff) | |
download | CMake-edce43514d854a84d2a00c975268f898bd1dda45.zip CMake-edce43514d854a84d2a00c975268f898bd1dda45.tar.gz CMake-edce43514d854a84d2a00c975268f898bd1dda45.tar.bz2 |
cmExportFileGenerator: Make SetImportLinkProperty a template
Allow the vector of property entries to have any element type
that can convert to std::string.
Diffstat (limited to 'Source/cmExportFileGenerator.h')
-rw-r--r-- | Source/cmExportFileGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.h b/Source/cmExportFileGenerator.h index abd8ad5..919924e 100644 --- a/Source/cmExportFileGenerator.h +++ b/Source/cmExportFileGenerator.h @@ -95,9 +95,11 @@ protected: std::string const& suffix, cmTarget* target, ImportPropertyMap& properties, std::vector<std::string>& missingTargets); + + template <typename T> void SetImportLinkProperty(std::string const& suffix, cmTarget* target, const std::string& propName, - std::vector<std::string> const& entries, + std::vector<T> const& entries, ImportPropertyMap& properties, std::vector<std::string>& missingTargets); |