diff options
author | Brad King <brad.king@kitware.com> | 2021-06-10 19:38:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-10 19:41:18 (GMT) |
commit | ea6d338ea10cd9a567e727cbf3d365966cb6f43c (patch) | |
tree | b2f47b7a8e4cba9976a0ca29c0371670b7cfde78 /Source/cmState.cxx | |
parent | 5fd68d3ef75d590da383b5189ee7f952bd560a30 (diff) | |
download | CMake-ea6d338ea10cd9a567e727cbf3d365966cb6f43c.zip CMake-ea6d338ea10cd9a567e727cbf3d365966cb6f43c.tar.gz CMake-ea6d338ea10cd9a567e727cbf3d365966cb6f43c.tar.bz2 |
cmState: Record imported target names in each directory
Model the change after commit 089868a244 (cmState: Record buildsystem
target names in each directory, 2016-09-16, v3.7.0-rc1~79^2~3).
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index d97762b..0b8a64b 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -286,6 +286,7 @@ cmStateSnapshot cmState::Reset() it->LinkDirectoriesBacktraces.clear(); it->DirectoryEnd = pos; it->NormalTargetNames.clear(); + it->ImportedTargetNames.clear(); it->Properties.Clear(); it->Children.clear(); } |