the-honkers-railway-launcher/.vscode/launch.json
2024-05-27 14:20:47 +02:00

26 lines
No EOL
791 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"cargo": {
"args": [
"build",
"--bin=honkers-railway-launcher",
"--package=honkers-railway-launcher"
],
"filter": {
"name": "honkers-railway-launcher",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}