cmGeneratorTarget: store synthetic targets in its cache

The synthetic target cache was never actually updated, so record them in
the cache so that reuses can actually be discovered.

Fixes: #25568
This commit is contained in:
Ben Boeckel
2024-02-16 08:42:57 -05:00
parent e0633a9517
commit 5261af9424

View File

@@ -8379,6 +8379,7 @@ bool cmGeneratorTarget::DiscoverSyntheticTargets(cmSyntheticTargetCache& cache,
// Create the generator target and attach it to the local generator.
auto gtp = cm::make_unique<cmGeneratorTarget>(tgt, lg);
synthDep = gtp.get();
cache.CxxModuleTargets[targetName] = synthDep;
lg->AddGeneratorTarget(std::move(gtp));
} else {
synthDep = cached->second;