summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-10-12 22:18:25 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-10-15 09:14:21 (GMT)
commita0a720e6a70133e361762101ce69a0b3f1ab244d (patch)
tree1955ca0f1f308c9f34a02707348ece3d1a4388cb /Source/cmTarget.cxx
parent637e3f3ee131cf30f7337db06314f4a1af22c245 (diff)
downloadCMake-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.cxx')
-rw-r--r--Source/cmTarget.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 52f1d04..76a12d4 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -272,6 +272,11 @@ cmTarget::cmTarget(std::string const& name, cmState::TargetType type,
}
}
+cmGlobalGenerator* cmTarget::GetGlobalGenerator() const
+{
+ return this->GetMakefile()->GetGlobalGenerator();
+}
+
void cmTarget::AddUtility(const std::string& u, cmMakefile* makefile)
{
if (this->Utilities.insert(u).second && makefile) {