44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug Executable",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=RustyDoom"
|
|
],
|
|
"filter": {
|
|
"name": "RustyDoom",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [
|
|
"./WADS/DOOM.WAD", "-dev", "-nomonsters", "-skill", "3"
|
|
],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Release Executable",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--release",
|
|
"--bin=RustyDoom"
|
|
],
|
|
"filter": {
|
|
"name": "RustyDoom",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [
|
|
"./WADS/DOOM.WAD", "arg2", "-fast"
|
|
],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |