diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-16 22:08:22 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-10-14 13:32:09 -0400 |
commit | 488723f5cd9bec3f7b35b26c89ce2d92ad7d4db4 (patch) | |
tree | 9d4abfce9ebe0608ade61c5dab3364d89b899508 /Source/cmIncludeCommand.cxx | |
parent | 1583440509a148d216d6691cdaeede1aa24af95c (diff) | |
download | cmake-488723f5cd9bec3f7b35b26c89ce2d92ad7d4db4.tar.gz |
cmMakefile: Store container of cmExportBuildFileGenerators.
Set a cmLocalGenerator on each instance at compute time. That will
soon be needed to access cmGeneratorTarget instances.
If a cmExportBuildFileGenerator is processed early during configure time as a
result of CMP0024 it must be removed from the list to process later at generate
time.
Diffstat (limited to 'Source/cmIncludeCommand.cxx')
-rw-r--r-- | Source/cmIncludeCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx index 8890e2b0a9..97d4d56aa1 100644 --- a/Source/cmIncludeCommand.cxx +++ b/Source/cmIncludeCommand.cxx @@ -126,6 +126,7 @@ bool cmIncludeCommand } } gg->CreateGenerationObjects(); + gg->ComputeBuildFileGenerators(); gg->GenerateImportFile(fname_abs); } |