the-honkers-railway-launcher/.vscode/launch.json
Observer KRypt0n_ 42ec7f2168
build: updated sdk (again)
Further theoretical fixes
2023-04-25 18:31:08 +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}"
}
]
}