Browse Source

cmComputeTargetDepends: Use simpler global generator access.

Stephen Kelly 10 years ago
parent
commit
cbf143bb76
1 changed files with 1 additions and 3 deletions
  1. 1 3
      Source/cmComputeTargetDepends.cxx

+ 1 - 3
Source/cmComputeTargetDepends.cxx

@@ -216,9 +216,7 @@ void cmComputeTargetDepends::CollectTargetDepends(int depender_index)
   // deal with config-specific dependencies.
   {
   std::set<std::string> emitted;
-  cmGeneratorTarget* gt = depender->GetMakefile()->GetLocalGenerator()
-                                  ->GetGlobalGenerator()
-                                  ->GetGeneratorTarget(depender);
+  cmGeneratorTarget* gt = this->GlobalGenerator->GetGeneratorTarget(depender);
 
   std::vector<std::string> configs;
   depender->GetMakefile()->GetConfigurations(configs);