mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 05:45:51 +00:00
Genex: Refactor empty element strip
In cmGeneratorExpressionEvaluator, teach getLinkedTargetsContent to call cmGeneratorExpression::StripEmptyListElements to transform its return value so that callers do not have to do so.
This commit is contained in:
parent
60bafeb684
commit
d5f0743d0f
@ -841,6 +841,8 @@ getLinkedTargetsContent(
|
||||
context->HadContextSensitiveCondition = true;
|
||||
}
|
||||
}
|
||||
linkedTargetsContent =
|
||||
cmGeneratorExpression::StripEmptyListElements(linkedTargetsContent);
|
||||
return linkedTargetsContent;
|
||||
}
|
||||
|
||||
@ -1100,9 +1102,6 @@ static const struct TargetPropertyNode : public cmGeneratorExpressionNode
|
||||
}
|
||||
}
|
||||
|
||||
linkedTargetsContent =
|
||||
cmGeneratorExpression::StripEmptyListElements(linkedTargetsContent);
|
||||
|
||||
if (!prop)
|
||||
{
|
||||
if (target->IsImported()
|
||||
|
Loading…
Reference in New Issue
Block a user