burrow/.vscode/launch.json
Conrad Kramer b37086e8f6 Add debugging task for VS Code
This allows you to launch the command line program into a debugger. This
commit also tweaks the CI and fixes a small error in the build script.
2023-04-16 21:19:46 -04:00

22 lines
No EOL
498 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"cargo": {
"args": [
"build",
"--bin=burrow",
],
"filter": {
"name": "burrow",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
]
}