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.
22 lines
No EOL
498 B
JSON
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}"
|
|
},
|
|
]
|
|
} |