diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-25 20:55:11 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-25 21:06:33 (GMT) |
commit | 00f2298f0788404cf170ed6ab50b73ef890b4302 (patch) | |
tree | 718ebb79186b8c174b005de0ee26c95fca4b3af2 /Source/cmComputeLinkDepends.cxx | |
parent | 6254ba95784ae29616b17ad8b42d4f31560c2c65 (diff) | |
download | CMake-00f2298f0788404cf170ed6ab50b73ef890b4302.zip CMake-00f2298f0788404cf170ed6ab50b73ef890b4302.tar.gz CMake-00f2298f0788404cf170ed6ab50b73ef890b4302.tar.bz2 |
Reduce uses of cmMakefile::GetGlobalGenerator.
Don't assume the cmMakefile has a global generator.
Diffstat (limited to 'Source/cmComputeLinkDepends.cxx')
-rw-r--r-- | Source/cmComputeLinkDepends.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 59590fd..1e02ae4 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -12,6 +12,7 @@ #include "cmComputeLinkDepends.h" #include "cmComputeComponentGraph.h" +#include "cmLocalGenerator.h" #include "cmGlobalGenerator.h" #include "cmMakefile.h" #include "cmTarget.h" @@ -177,7 +178,8 @@ cmComputeLinkDepends // Store context information. this->Target = target; this->Makefile = this->Target->Target->GetMakefile(); - this->GlobalGenerator = this->Makefile->GetGlobalGenerator(); + this->GlobalGenerator = + this->Target->GetLocalGenerator()->GetGlobalGenerator(); this->CMakeInstance = this->GlobalGenerator->GetCMakeInstance(); // The configuration being linked. |