diff options
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index c5a5f78..3911d9e 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -171,6 +171,10 @@ public: const char* suffix, std::string& dir); + /** Get the manifest of all targets that will be built for each + configuration. This is valid during generation only. */ + cmTargetManifest const& GetTargetManifest() { return this->TargetManifest; } + protected: // Fill the ProjectMap, this must be called after LocalGenerators // has been populated. @@ -205,6 +209,10 @@ protected: // Set of named installation components requested by the project. std::set<cmStdString> InstallComponents; + // Manifest of all targets that will be built for each configuration. + // This is computed just before local generators generate. + cmTargetManifest TargetManifest; + private: // If you add a new map here, make sure it is copied // in EnableLanguagesFromGenerator |