diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2021-06-18 18:44:46 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2021-10-27 19:17:23 (GMT) |
commit | 2a78d47b16c8b7a3b599f1862cbab0de58575d84 (patch) | |
tree | 736a0d889a4c0cdf7d64779b1a3bce50feb9bb4b /Source/cmExportFileGenerator.h | |
parent | 9b479124cc4be49a4b2c6e45e733b489f7a26432 (diff) | |
download | CMake-2a78d47b16c8b7a3b599f1862cbab0de58575d84.zip CMake-2a78d47b16c8b7a3b599f1862cbab0de58575d84.tar.gz CMake-2a78d47b16c8b7a3b599f1862cbab0de58575d84.tar.bz2 |
install(EXPORT): Install file sets
Diffstat (limited to 'Source/cmExportFileGenerator.h')
-rw-r--r-- | Source/cmExportFileGenerator.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmExportFileGenerator.h b/Source/cmExportFileGenerator.h index 24e048b..5875247 100644 --- a/Source/cmExportFileGenerator.h +++ b/Source/cmExportFileGenerator.h @@ -15,7 +15,9 @@ #include "cmVersion.h" #include "cmVersionConfig.h" +class cmFileSet; class cmGeneratorTarget; +class cmTargetExport; #define STRINGIFY_HELPER(X) #X #define STRINGIFY(X) STRINGIFY_HELPER(X) @@ -184,6 +186,16 @@ protected: ImportPropertyMap& properties, std::string& errorMessage); + void GenerateTargetFileSets(cmGeneratorTarget* gte, std::ostream& os, + cmTargetExport* te = nullptr); + + virtual std::string GetFileSetDirectories(cmGeneratorTarget* gte, + cmFileSet* fileSet, + cmTargetExport* te) = 0; + virtual std::string GetFileSetFiles(cmGeneratorTarget* gte, + cmFileSet* fileSet, + cmTargetExport* te) = 0; + // The namespace in which the exports are placed in the generated file. std::string Namespace; |