diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 10:48:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-07 02:10:29 (GMT) |
commit | 8f75ea3b5e0b43118a6ecba4dc11a583d287705c (patch) | |
tree | 93d58ee21519dc35faae1da8c3ab4dbd00fccf44 | |
parent | 56f0540b5183036b46babbfc9b9ec0979e54992f (diff) | |
download | CMake-8f75ea3b5e0b43118a6ecba4dc11a583d287705c.zip CMake-8f75ea3b5e0b43118a6ecba4dc11a583d287705c.tar.gz CMake-8f75ea3b5e0b43118a6ecba4dc11a583d287705c.tar.bz2 |
cmGlobalGenerator: Port global target creation to cmMakefile.
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 98961d8..f96cf21 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2247,7 +2247,7 @@ inline std::string removeQuotes(const std::string& s) void cmGlobalGenerator::CreateDefaultGlobalTargets(cmTargets* targets) { - cmMakefile* mf = this->LocalGenerators[0]->GetMakefile(); + cmMakefile* mf = this->Makefiles[0]; const char* cmakeCfgIntDir = this->GetCMakeCFGIntDir(); // CPack |