diff options
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index e1ebe20..8cec0b9 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -23,6 +23,7 @@ class cmake; class cmMakefile; class cmLocalGenerator; +class cmTarget; /** \class cmGlobalGenerator * \brief Responable for overseeing the generation process for the entire tree @@ -132,6 +133,8 @@ protected: ///! used by Configure() void RecursiveConfigure(cmLocalGenerator *lg, float start, float end); + ///! Find a target by name by searching the local generators. + cmTarget* FindTarget(const char* name); private: // If you add a new map here, make sure it is copied // in EnableLanguagesFromGenerator |