diff options
author | Brad King <brad.king@kitware.com> | 2024-05-08 15:49:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-05-21 13:22:51 (GMT) |
commit | 633afa0b2e27a6eca3a4b1e123a80cf4338fe509 (patch) | |
tree | be1f022ff03bfe3a2589b6caf43a24a54231405f /Source/cmGeneratorTarget_TransitiveProperty.cxx | |
parent | e64d09a72957434187887fec8cbd89be042f173b (diff) | |
download | CMake-633afa0b2e27a6eca3a4b1e123a80cf4338fe509.zip CMake-633afa0b2e27a6eca3a4b1e123a80cf4338fe509.tar.gz CMake-633afa0b2e27a6eca3a4b1e123a80cf4338fe509.tar.bz2 |
cmGeneratorExpressionDAGChecker: Make config name available in constructor
Diffstat (limited to 'Source/cmGeneratorTarget_TransitiveProperty.cxx')
-rw-r--r-- | Source/cmGeneratorTarget_TransitiveProperty.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget_TransitiveProperty.cxx b/Source/cmGeneratorTarget_TransitiveProperty.cxx index f5d9a1a..2cd3665 100644 --- a/Source/cmGeneratorTarget_TransitiveProperty.cxx +++ b/Source/cmGeneratorTarget_TransitiveProperty.cxx @@ -107,9 +107,9 @@ std::string cmGeneratorTarget::EvaluateInterfaceProperty( // Evaluate $<TARGET_PROPERTY:this,prop> as if it were compiled. This is // a subset of TargetPropertyNode::Evaluate without stringify/parse steps // but sufficient for transitive interface properties. - cmGeneratorExpressionDAGChecker dagChecker(context->Backtrace, this, prop, - nullptr, dagCheckerParent, - this->LocalGenerator); + cmGeneratorExpressionDAGChecker dagChecker( + context->Backtrace, this, prop, nullptr, dagCheckerParent, + this->LocalGenerator, context->Config); switch (dagChecker.Check()) { case cmGeneratorExpressionDAGChecker::SELF_REFERENCE: dagChecker.ReportError( |