mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 12:53:55 +08:00
cmState: Clear GlobVerificationManager state on Reset
It should not persist across multiple configure rounds. Fixes: #18208
This commit is contained in:
@@ -170,3 +170,10 @@ void cmGlobVerificationManager::AddCacheEntry(
|
||||
value.Backtraces.emplace_back(variable, backtrace);
|
||||
}
|
||||
}
|
||||
|
||||
void cmGlobVerificationManager::Reset()
|
||||
{
|
||||
this->Cache.clear();
|
||||
this->VerifyScript.clear();
|
||||
this->VerifyStamp.clear();
|
||||
}
|
||||
|
@@ -37,6 +37,9 @@ protected:
|
||||
const std::string& variable,
|
||||
const cmListFileBacktrace& bt);
|
||||
|
||||
///! Clear the glob cache for state reset.
|
||||
void Reset();
|
||||
|
||||
///! Check targets should be written in generated build system.
|
||||
bool DoWriteVerifyTarget() const;
|
||||
|
||||
|
@@ -267,6 +267,7 @@ cmStateSnapshot cmState::Reset()
|
||||
{
|
||||
this->GlobalProperties.clear();
|
||||
this->PropertyDefinitions.clear();
|
||||
this->GlobVerificationManager->Reset();
|
||||
|
||||
cmStateDetail::PositionType pos = this->SnapshotData.Truncate();
|
||||
this->ExecutionListFiles.Truncate();
|
||||
|
Reference in New Issue
Block a user