obliteration/.vscode/launch.json

44 lines
959 B
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": [],
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-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"
}
},
"args": [
"--debug"
],
2023-09-25 20:27:29 +00:00
"cwd": "${workspaceFolder}"
2022-09-30 10:51:54 +00:00
}
],
"version": "2.0.0"
}