Advance more when preprocessing exported strings.
When evaluating TARGET_PROPERTY here, we can skip to the comma location. We need to calculate it though as the string may have just been changed.
This commit is contained in:
parent
30268b46f8
commit
7ceeba992b
|
@ -391,7 +391,7 @@ cmExportFileGenerator::ResolveTargetsInGeneratorExpression(
|
|||
{
|
||||
input.replace(nameStartPos, commaPos - nameStartPos, targetName);
|
||||
}
|
||||
lastPos = pos + targetName.size();
|
||||
lastPos = nameStartPos + targetName.size() + 1;
|
||||
}
|
||||
|
||||
std::string errorString;
|
||||
|
|
Loading…
Reference in New Issue