diff options
author | Brad King <brad.king@kitware.com> | 2015-08-31 13:48:30 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-08-31 13:48:30 (GMT) |
commit | 9a6d7d2e5484fb75aa3aea2ad5d981cf699bfd25 (patch) | |
tree | d04f50359dcb4a6328c12bd0bb99545b1c0bfabc /Source/cmGlobalGenerator.cxx | |
parent | 352e8e95b65e19cca10b4aec0c626787dfbb1ba1 (diff) | |
parent | 616d8f02d53b9a0c2ec5c85a6b1afc17081d1e2e (diff) | |
download | CMake-9a6d7d2e5484fb75aa3aea2ad5d981cf699bfd25.zip CMake-9a6d7d2e5484fb75aa3aea2ad5d981cf699bfd25.tar.gz CMake-9a6d7d2e5484fb75aa3aea2ad5d981cf699bfd25.tar.bz2 |
Merge topic 'refactor-compute'
616d8f02 cmGeneratorTarget: Rename method to match operation.
ec56d244 cmGlobalGenerator: Process evaluation files after target depends.
1e5349a5 cmGlobalGenerator: Access makefile from makefiles container.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index b3f3cba..ec36d2a 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1325,11 +1325,9 @@ void cmGlobalGenerator::Generate() // Compute the manifest of main targets generated. for (i = 0; i < this->LocalGenerators.size(); ++i) { - this->LocalGenerators[i]->GenerateTargetManifest(); + this->LocalGenerators[i]->ComputeTargetManifest(); } - this->ProcessEvaluationFiles(); - // Compute the inter-target dependencies. if(!this->ComputeTargetDepends()) { @@ -1340,6 +1338,8 @@ void cmGlobalGenerator::Generate() // it builds by default. this->InitializeProgressMarks(); + this->ProcessEvaluationFiles(); + for (i = 0; i < this->LocalGenerators.size(); ++i) { this->LocalGenerators[i]->ComputeHomeRelativeOutputPath(); @@ -1668,8 +1668,7 @@ void cmGlobalGenerator::CheckTargetProperties() text += "\n linked by target \""; text += l->second.GetName(); text += "\" in directory "; - text+=this->LocalGenerators[i]->GetMakefile() - ->GetCurrentSourceDirectory(); + text+=this->Makefiles[i]->GetCurrentSourceDirectory(); notFoundMap[varName] = text; } } |