diff options
author | Brad King <brad.king@kitware.com> | 2020-05-29 10:12:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-29 10:14:59 (GMT) |
commit | 902858367f27e52a3693f8e65573621d9382ac88 (patch) | |
tree | bac30974567a2448374be0a11ef3c71c9614a64f /Source | |
parent | e647949539f4704a00eddac2357d59ceeb8bc0ca (diff) | |
parent | fa7b041eca021cecfd883cc5796150dae5ad4c5f (diff) | |
download | CMake-902858367f27e52a3693f8e65573621d9382ac88.zip CMake-902858367f27e52a3693f8e65573621d9382ac88.tar.gz CMake-902858367f27e52a3693f8e65573621d9382ac88.tar.bz2 |
Merge branch 'backport-3.16-pch-fix-bad-ClearSourcesCache'
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 | ||||
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 18 |
2 files changed, 17 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 5828651..94a795e 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -3555,8 +3555,6 @@ std::string cmGeneratorTarget::GetPchFileObject(const std::string& config, } std::string& filename = inserted.first->second; - this->AddSource(pchSource, true); - auto pchSf = this->Makefile->GetOrCreateSource( pchSource, false, cmSourceFileLocationKind::Known); diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 6a2d4c7..238097d 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1609,7 +1609,23 @@ bool cmGlobalGenerator::AddAutomaticSources() continue; } lg->AddUnityBuild(gt.get()); - lg->AddPchDependencies(gt.get()); + // Targets that re-use a PCH are handled below. + if (!gt->GetProperty("PRECOMPILE_HEADERS_REUSE_FROM")) { + lg->AddPchDependencies(gt.get()); + } + } + } + for (const auto& lg : this->LocalGenerators) { + for (const auto& gt : lg->GetGeneratorTargets()) { + if (gt->GetType() == cmStateEnums::INTERFACE_LIBRARY || + gt->GetType() == cmStateEnums::UTILITY || + gt->GetType() == cmStateEnums::GLOBAL_TARGET) { + continue; + } + // Handle targets that re-use a PCH from an above-handled target. + if (gt->GetProperty("PRECOMPILE_HEADERS_REUSE_FROM")) { + lg->AddPchDependencies(gt.get()); + } } } // The above transformations may have changed the classification of sources. |