mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
Refactor export file generator inteface
Replace cmTargetExport with const cmGeneratorTarget to allow recursive processing of exported targets and their link dependencies.
This commit is contained in:
@@ -63,13 +63,13 @@ protected:
|
||||
cmTargetExport const* targetExport) const;
|
||||
void HandleMissingTarget(std::string& link_libs,
|
||||
std::vector<std::string>& missingTargets,
|
||||
cmGeneratorTarget* depender,
|
||||
cmGeneratorTarget const* depender,
|
||||
cmGeneratorTarget* dependee) override;
|
||||
|
||||
void ReplaceInstallPrefix(std::string& input) override;
|
||||
|
||||
void ComplainAboutMissingTarget(cmGeneratorTarget* depender,
|
||||
cmGeneratorTarget* dependee,
|
||||
void ComplainAboutMissingTarget(cmGeneratorTarget const* depender,
|
||||
cmGeneratorTarget const* dependee,
|
||||
std::vector<std::string> const& exportFiles);
|
||||
|
||||
std::pair<std::vector<std::string>, std::string> FindNamespaces(
|
||||
@@ -94,7 +94,7 @@ protected:
|
||||
ImportPropertyMap& properties,
|
||||
std::set<std::string>& importedLocations);
|
||||
|
||||
std::string InstallNameDir(cmGeneratorTarget* target,
|
||||
std::string InstallNameDir(cmGeneratorTarget const* target,
|
||||
const std::string& config) override;
|
||||
|
||||
cmInstallExportGenerator* IEGen;
|
||||
|
||||
Reference in New Issue
Block a user