mirror of
https://github.com/reactos/CMake.git
synced 2025-01-09 05:00:35 +00:00
cmGeneratorExpressionEvaluator: Shorten some long lines
Adjust the definitions of getLinkedTargetsContent to avoid long lines.
This commit is contained in:
parent
82e91e3487
commit
f85ccf23ee
@ -799,13 +799,14 @@ static const char* targetPropertyTransitiveWhitelist[] = {
|
||||
|
||||
#undef TRANSITIVE_PROPERTY_NAME
|
||||
|
||||
std::string getLinkedTargetsContent(
|
||||
std::vector<cmTarget const*> &targets,
|
||||
cmTarget const* target,
|
||||
cmTarget const* headTarget,
|
||||
cmGeneratorExpressionContext *context,
|
||||
cmGeneratorExpressionDAGChecker *dagChecker,
|
||||
const std::string &interfacePropertyName)
|
||||
std::string
|
||||
getLinkedTargetsContent(
|
||||
std::vector<cmTarget const*> &targets,
|
||||
cmTarget const* target,
|
||||
cmTarget const* headTarget,
|
||||
cmGeneratorExpressionContext *context,
|
||||
cmGeneratorExpressionDAGChecker *dagChecker,
|
||||
const std::string &interfacePropertyName)
|
||||
{
|
||||
cmGeneratorExpression ge(&context->Backtrace);
|
||||
|
||||
@ -841,12 +842,14 @@ std::string getLinkedTargetsContent(
|
||||
return linkedTargetsContent;
|
||||
}
|
||||
|
||||
std::string getLinkedTargetsContent(std::vector<cmLinkItem> const &libraries,
|
||||
cmTarget const* target,
|
||||
cmTarget const* headTarget,
|
||||
cmGeneratorExpressionContext *context,
|
||||
cmGeneratorExpressionDAGChecker *dagChecker,
|
||||
const std::string &interfacePropertyName)
|
||||
std::string
|
||||
getLinkedTargetsContent(
|
||||
std::vector<cmLinkItem> const &libraries,
|
||||
cmTarget const* target,
|
||||
cmTarget const* headTarget,
|
||||
cmGeneratorExpressionContext *context,
|
||||
cmGeneratorExpressionDAGChecker *dagChecker,
|
||||
const std::string &interfacePropertyName)
|
||||
{
|
||||
std::vector<cmTarget const*> tgts;
|
||||
for (std::vector<cmLinkItem>::const_iterator
|
||||
|
Loading…
Reference in New Issue
Block a user