diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-12 22:18:25 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 09:14:21 (GMT) |
commit | a0a720e6a70133e361762101ce69a0b3f1ab244d (patch) | |
tree | 1955ca0f1f308c9f34a02707348ece3d1a4388cb /Source/cmTarget.h | |
parent | 637e3f3ee131cf30f7337db06314f4a1af22c245 (diff) | |
download | CMake-a0a720e6a70133e361762101ce69a0b3f1ab244d.zip CMake-a0a720e6a70133e361762101ce69a0b3f1ab244d.tar.gz CMake-a0a720e6a70133e361762101ce69a0b3f1ab244d.tar.bz2 |
cm{,Generator}Target: Add global generator accessors
Provide 'static polymorphism' between the types in this aspect so that
they can be used indiscriminately in a C++ template.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 84f43b3..2d259ed 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -30,6 +30,7 @@ class cmMakefile; class cmSourceFile; +class cmGlobalGenerator; class cmTargetInternals; class cmTargetInternalPointer @@ -76,6 +77,8 @@ public: */ cmState::TargetType GetType() const { return this->TargetTypeValue; } + cmGlobalGenerator* GetGlobalGenerator() const; + ///! Set/Get the name of the target const std::string& GetName() const { return this->Name; } |