diff options
author | Brad King <brad.king@kitware.com> | 2020-12-14 12:08:27 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-12-14 12:08:49 (GMT) |
commit | f70814c3fd3b36fd8927c8526dd03cd105ecf205 (patch) | |
tree | 5066d2f4429666576b83779b1ee3dc3ffc547ce1 /Source/cmake.cxx | |
parent | 0d5649c67ba9b39dae650439b9458415c91debd1 (diff) | |
parent | 63db7ae9c40a806494dc81b9ae2940fe91a6aad7 (diff) | |
download | CMake-f70814c3fd3b36fd8927c8526dd03cd105ecf205.zip CMake-f70814c3fd3b36fd8927c8526dd03cd105ecf205.tar.gz CMake-f70814c3fd3b36fd8927c8526dd03cd105ecf205.tar.bz2 |
Merge topic 'install-properties'
63db7ae9c4 cmake: Clear INSTALL file properties between runs
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5603
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index cfd724b..1691037 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -411,6 +411,8 @@ void cmake::CleanupCommandsAndMacros() this->CurrentSnapshot = this->State->Reset(); this->State->RemoveUserDefinedCommands(); this->CurrentSnapshot.SetDefaultDefinitions(); + // FIXME: InstalledFiles probably belongs in the global generator. + this->InstalledFiles.clear(); } #ifndef CMAKE_BOOTSTRAP |