diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-17 12:33:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-18 14:29:29 (GMT) |
commit | 6a72b3c84e016d7e540aa3d9b079200b3fb52ab7 (patch) | |
tree | 3eb9c8d9adf1370fb6371ab4ff54aad4c423c4f7 /Source/cmExportTryCompileFileGenerator.h | |
parent | 1293c1561a58b2f8b0bd4ec05bb249fc36f487ac (diff) | |
download | CMake-6a72b3c84e016d7e540aa3d9b079200b3fb52ab7.zip CMake-6a72b3c84e016d7e540aa3d9b079200b3fb52ab7.tar.gz CMake-6a72b3c84e016d7e540aa3d9b079200b3fb52ab7.tar.bz2 |
Export: Port interface to cmGeneratorTarget.
Diffstat (limited to 'Source/cmExportTryCompileFileGenerator.h')
-rw-r--r-- | Source/cmExportTryCompileFileGenerator.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmExportTryCompileFileGenerator.h b/Source/cmExportTryCompileFileGenerator.h index 4507787..19d8024 100644 --- a/Source/cmExportTryCompileFileGenerator.h +++ b/Source/cmExportTryCompileFileGenerator.h @@ -41,15 +41,16 @@ protected: cmTarget*, cmTarget*) {} - void PopulateProperties(cmTarget const* target, + void PopulateProperties(cmGeneratorTarget const* target, ImportPropertyMap& properties, - std::set<cmTarget const*> &emitted); + std::set<const cmGeneratorTarget*>& emitted); std::string InstallNameDir(cmGeneratorTarget* target, const std::string& config); private: - std::string FindTargets(const std::string& prop, cmTarget const* tgt, - std::set<cmTarget const*> &emitted); + std::string FindTargets(const std::string& prop, + const cmGeneratorTarget* tgt, + std::set<const cmGeneratorTarget*>& emitted); std::vector<cmGeneratorTarget const*> Exports; |