summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-23 01:04:07 +0200
committerStephen Kelly <steveire@gmail.com>2015-10-27 07:44:21 +0100
commit7a1b83cb3fc79639b9e2c1bf11af2d2274e4224a (patch)
treeae5b0ca1b6ff0e3e56362113b65f4c74af374b5a /Source/cmGeneratorTarget.cxx
parent736c2042c6bade0322441aafabababcbd92af52e (diff)
downloadcmake-7a1b83cb3fc79639b9e2c1bf11af2d2274e4224a.tar.gz
cmGeneratorTarget: Add GetUtilityBacktrace API
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 7d5a9d0537..eb433f52b4 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -1742,6 +1742,12 @@ const std::set<std::string>& cmGeneratorTarget::GetUtilities() const
return this->Target->GetUtilities();
}
+const cmListFileBacktrace*
+cmGeneratorTarget::GetUtilityBacktrace(const std::string& u) const
+{
+ return this->Target->GetUtilityBacktrace(u);
+}
+
//----------------------------------------------------------------------------
bool cmGeneratorTarget::HaveWellDefinedOutputFiles() const
{