summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalNinjaGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-22 23:01:46 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-27 06:44:20 (GMT)
commit736c2042c6bade0322441aafabababcbd92af52e (patch)
tree6d337a677712c800b7c2834d909c4736c1baa818 /Source/cmGlobalNinjaGenerator.cxx
parentf210cb131e5814631d6d2974cf2437632446654f (diff)
downloadCMake-736c2042c6bade0322441aafabababcbd92af52e.zip
CMake-736c2042c6bade0322441aafabababcbd92af52e.tar.gz
CMake-736c2042c6bade0322441aafabababcbd92af52e.tar.bz2
cmGeneratorTarget: Add GetUtilities API
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.cxx')
-rw-r--r--Source/cmGlobalNinjaGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx
index 2671f4d..8498e39 100644
--- a/Source/cmGlobalNinjaGenerator.cxx
+++ b/Source/cmGlobalNinjaGenerator.cxx
@@ -965,7 +965,7 @@ cmGlobalNinjaGenerator
if (target->GetType() == cmState::GLOBAL_TARGET) {
// Global targets only depend on other utilities, which may not appear in
// the TargetDepends set (e.g. "all").
- std::set<std::string> const& utils = target->Target->GetUtilities();
+ std::set<std::string> const& utils = target->GetUtilities();
std::copy(utils.begin(), utils.end(), std::back_inserter(outputs));
} else {
cmTargetDependSet const& targetDeps = this->GetTargetDirectDepends(target);