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/cmTargetExport.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/cmTargetExport.h')
-rw-r--r-- | Source/cmTargetExport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTargetExport.h b/Source/cmTargetExport.h index 19fc931..885ac74 100644 --- a/Source/cmTargetExport.h +++ b/Source/cmTargetExport.h @@ -6,7 +6,9 @@ #include <string> +class cmFileSet; class cmGeneratorTarget; +class cmInstallFileSetGenerator; class cmInstallFilesGenerator; class cmInstallTargetGenerator; @@ -29,6 +31,7 @@ public: cmInstallTargetGenerator* FrameworkGenerator; cmInstallTargetGenerator* BundleGenerator; cmInstallFilesGenerator* HeaderGenerator; + std::map<cmFileSet*, cmInstallFileSetGenerator*> FileSetGenerators; ///@} bool NamelinkOnly = false; |