obliteration/.vscode/launch.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

41 lines
1.0 KiB
JSON

{
"configurations": [
{
"name": "GUI",
"type": "lldb",
"request": "launch",
"args": [
"--kernel",
"${workspaceFolder}/build/obkrnl"
],
"cwd": "${workspaceFolder}",
"windows": {
"program": "${workspaceFolder}/build/gui/Obliteration.exe",
"env": {
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
}
},
"linux": {
"program": "${workspaceFolder}/build/gui/obliteration"
},
"osx": {
"program": "${workspaceFolder}/build/gui/obliteration.app/Contents/MacOS/obliteration"
}
},
{
"name": "Kernel",
"type": "lldb",
"request": "custom",
"preLaunchTask": "Launch VMM (Debug)",
"targetCreateCommands": [
"target create ${workspaceFolder}/build/obkrnl",
"target modules load --file ${workspaceFolder}/build/obkrnl -s 0xffffffff82200000"
],
"processCreateCommands": [
"gdb-remote 1234"
]
}
],
"version": "2.0.0"
}