cmake: COMMAND could have ';' separated arguments

This commit is contained in:
Xavier Claessens 2019-10-01 10:56:43 -04:00 committed by Xavier Claessens
parent 73f0061498
commit a4b0d216b5
1 changed files with 1 additions and 1 deletions

View File

@ -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]