diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-20 11:50:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-01-21 08:12:22 (GMT) |
commit | d70204a86aa3e454e73049efda3e1ccea8c60720 (patch) | |
tree | 45bc8dd5a0184c82be312492e20eed5c99a7d146 /Source/cmGlobalGenerator.cxx | |
parent | 0d46e9a0297d78dabc9988604a15c0096c702855 (diff) | |
download | CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.zip CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.gz CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.bz2 |
Only output includes once after the start of 'generate-time' when debugging.
During configure-time, GetIncludeDirectories may be called too, for example
if using the export() command. As the content can be different, it should
be output each time then.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index d2baf53..f28bd6c 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -980,6 +980,7 @@ void cmGlobalGenerator::Generate() // Generate project files for (i = 0; i < this->LocalGenerators.size(); ++i) { + this->LocalGenerators[i]->GetMakefile()->SetGeneratingBuildSystem(); this->SetCurrentLocalGenerator(this->LocalGenerators[i]); this->LocalGenerators[i]->Generate(); this->LocalGenerators[i]->GenerateInstallRules(); |