obliteration/.vscode/tasks.json
Putta Khunchalee bbb5fc14b7
Some checks failed
Development Build / Build (push) Has been cancelled
Development Build / Update PRs (push) Has been cancelled
Housekeep / Housekeep (push) Has been cancelled
Removes .obliteration-development (#1085)
2024-11-03 21:41:45 +01:00

35 lines
831 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Launch VMM (Debug)",
"detail": "Launch the GUI then start the VMM in debug mode",
"type": "process",
"isBackground": true,
"runOptions": {
"instanceLimit": 1
},
"linux": {
"command": "${workspaceFolder}/build/gui/obliteration"
},
"osx": {
"command": "${workspaceFolder}/build/gui/obliteration.app/Contents/MacOS/obliteration"
},
"windows": {
"command": "${workspaceFolder}/build/gui/Obliteration.exe",
"options": {
"env": {
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
}
}
},
"args": [
"--debug",
"127.0.0.1:1234",
"--kernel",
"${workspaceFolder}/build/obkrnl"
]
}
]
}