cmake: COMMAND could have ';' separated arguments
This commit is contained in:
parent
73f0061498
commit
a4b0d216b5
|
@ -254,7 +254,7 @@ class CMakeTraceParser:
|
|||
def handle_command(key: str, target: CMakeGeneratorTarget) -> None:
|
||||
if key == 'ARGS':
|
||||
return
|
||||
target.command[-1] += [key]
|
||||
target.command[-1] += key.split(';')
|
||||
|
||||
def handle_depends(key: str, target: CMakeGeneratorTarget) -> None:
|
||||
target.depends += [key]
|
||||
|
|
Loading…
Reference in New Issue