diff options
author | Brad King <brad.king@kitware.com> | 2024-04-25 19:30:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-04-29 21:27:35 (GMT) |
commit | e8010b67c7050aca36f5db9a75027606af35b93a (patch) | |
tree | 74856bcea80e1bd0dac0a533672c34c875eb62cd /Source/cmGeneratorExpressionDAGChecker.cxx | |
parent | b36fb3f6f1aed3c1313ff257945632d13704e1e6 (diff) | |
download | CMake-e8010b67c7050aca36f5db9a75027606af35b93a.zip CMake-e8010b67c7050aca36f5db9a75027606af35b93a.tar.gz CMake-e8010b67c7050aca36f5db9a75027606af35b93a.tar.bz2 |
cmGeneratorExpressionDAGChecker: Make local generator available in constructor
This is the local generator in the evaluation context, not that of
the current target/property pair.
Diffstat (limited to 'Source/cmGeneratorExpressionDAGChecker.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionDAGChecker.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpressionDAGChecker.cxx b/Source/cmGeneratorExpressionDAGChecker.cxx index fda7ec3..8bad91b 100644 --- a/Source/cmGeneratorExpressionDAGChecker.cxx +++ b/Source/cmGeneratorExpressionDAGChecker.cxx @@ -20,16 +20,17 @@ cmGeneratorExpressionDAGChecker::cmGeneratorExpressionDAGChecker( cmGeneratorTarget const* target, std::string property, const GeneratorExpressionContent* content, - cmGeneratorExpressionDAGChecker* parent) + cmGeneratorExpressionDAGChecker* parent, cmLocalGenerator const* contextLG) : cmGeneratorExpressionDAGChecker(cmListFileBacktrace(), target, - std::move(property), content, parent) + std::move(property), content, parent, + contextLG) { } cmGeneratorExpressionDAGChecker::cmGeneratorExpressionDAGChecker( cmListFileBacktrace backtrace, cmGeneratorTarget const* target, std::string property, const GeneratorExpressionContent* content, - cmGeneratorExpressionDAGChecker* parent) + cmGeneratorExpressionDAGChecker* parent, cmLocalGenerator const* contextLG) : Parent(parent) , Top(parent ? parent->Top : this) , Target(target) @@ -37,6 +38,7 @@ cmGeneratorExpressionDAGChecker::cmGeneratorExpressionDAGChecker( , Content(content) , Backtrace(std::move(backtrace)) { + static_cast<void>(contextLG); if (parent) { this->TopIsTransitiveProperty = parent->TopIsTransitiveProperty; } else { |