obliteration/.vscode/launch.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2022-09-30 10:51:54 +00:00
{
"configurations": [
{
"name": "GUI",
2022-09-30 10:51:54 +00:00
"type": "lldb",
"request": "launch",
"args": [
"--kernel",
"${workspaceFolder}/build/obkrnl"
],
2023-01-08 20:44:42 +00:00
"cwd": "${workspaceFolder}",
"windows": {
"program": "${workspaceFolder}/build/gui/Obliteration.exe",
2023-01-08 20:44:42 +00:00
"env": {
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
}
},
"linux": {
"program": "${workspaceFolder}/build/gui/obliteration"
2023-01-08 20:44:42 +00:00
},
"osx": {
"program": "${workspaceFolder}/build/gui/obliteration.app/Contents/MacOS/obliteration"
2023-01-08 20:44:42 +00:00
}
2022-10-07 21:56:17 +00:00
},
2024-10-04 15:22:59 +00:00
{
"name": "Kernel",
"type": "lldb",
"request": "custom",
"preLaunchTask": "Launch VMM (Debug)",
2024-10-06 19:40:00 +00:00
"targetCreateCommands": [
"target create ${workspaceFolder}/build/obkrnl",
"target modules load --file ${workspaceFolder}/build/obkrnl -s 0xffffffff82200000"
2024-10-06 19:40:00 +00:00
],
"processCreateCommands": [
"gdb-remote 1234"
2024-10-04 15:22:59 +00:00
]
2022-09-30 10:51:54 +00:00
}
],
"version": "2.0.0"
}