diff options
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 419cada..c52b209 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -254,6 +254,8 @@ public: cmTarget* FindTarget(const std::string& name, bool excludeAliases = false) const; + cmGeneratorTarget* FindGeneratorTarget(const std::string& name) const; + void AddAlias(const std::string& name, const std::string& tgtName); bool IsAlias(const std::string& name) const; @@ -432,6 +434,10 @@ protected: cmTarget* FindTargetImpl(std::string const& name) const; cmTarget* FindImportedTargetImpl(std::string const& name) const; + cmGeneratorTarget* FindGeneratorTargetImpl(std::string const& name) const; + cmGeneratorTarget* + FindImportedGeneratorTargetImpl(std::string const& name) const; + const char* GetPredefinedTargetsFolder(); virtual bool UseFolderProperty(); |