2022-09-30 10:51:54 +00:00
|
|
|
{
|
|
|
|
"configurations": [
|
|
|
|
{
|
2024-10-03 06:43:26 +00:00
|
|
|
"name": "GUI",
|
2022-09-30 10:51:54 +00:00
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"args": [],
|
2023-01-08 20:44:42 +00:00
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"windows": {
|
2024-10-03 06:43:26 +00:00
|
|
|
"program": "${workspaceFolder}/build/gui/Obliteration.exe",
|
2023-01-08 20:44:42 +00:00
|
|
|
"env": {
|
|
|
|
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"linux": {
|
2024-10-03 06:43:26 +00:00
|
|
|
"program": "${workspaceFolder}/build/gui/obliteration"
|
2023-01-08 20:44:42 +00:00
|
|
|
},
|
|
|
|
"osx": {
|
2024-10-03 06:43:26 +00:00
|
|
|
"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-07-14 12:13:36 +00:00
|
|
|
"name": "Legacy Kernel",
|
2022-10-07 21:56:17 +00:00
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
2024-07-16 20:08:35 +00:00
|
|
|
"cargo": {
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"--manifest-path",
|
|
|
|
"${workspaceFolder}/src/kernel/Cargo.toml"
|
|
|
|
],
|
|
|
|
"filter": {
|
|
|
|
"kind": "bin"
|
|
|
|
}
|
|
|
|
},
|
2024-10-03 06:43:26 +00:00
|
|
|
"args": [
|
|
|
|
"--debug"
|
|
|
|
],
|
2023-09-25 20:27:29 +00:00
|
|
|
"cwd": "${workspaceFolder}"
|
2022-09-30 10:51:54 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"version": "2.0.0"
|
|
|
|
}
|