diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 10:17:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-07 02:10:29 (GMT) |
commit | 19b546ef766acedfcc9e19541c71b6a56d7fe630 (patch) | |
tree | 7d4322acf7f81233b36e47fad8f0f34d86872076 /Source | |
parent | f8be9ba9c258698ed88a7510cf2ba3335491f3da (diff) | |
download | CMake-19b546ef766acedfcc9e19541c71b6a56d7fe630.zip CMake-19b546ef766acedfcc9e19541c71b6a56d7fe630.tar.gz CMake-19b546ef766acedfcc9e19541c71b6a56d7fe630.tar.bz2 |
cmGlobalGenerator: Base final target property computation on Makefiles.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 5787a9d..83bfe57 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1482,9 +1482,9 @@ void cmGlobalGenerator::CreateQtAutoGeneratorsTargets(AutogensType &autogens) void cmGlobalGenerator::FinalizeTargetCompileInfo() { // Construct per-target generator information. - for(unsigned int i=0; i < this->LocalGenerators.size(); ++i) + for(unsigned int i=0; i < this->Makefiles.size(); ++i) { - cmMakefile *mf = this->LocalGenerators[i]->GetMakefile(); + cmMakefile *mf = this->Makefiles[i]; const cmStringRange noconfig_compile_definitions = mf->GetCompileDefinitionsEntries(); |