mirror of
https://github.com/obhq/obliteration.git
synced 2024-11-23 11:19:56 +00:00
41 lines
1.0 KiB
JSON
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"
|
|
}
|