HomeServer/.vscode/launch.json

26 lines
777 B
JSON
Raw Permalink Normal View History

2023-10-16 11:37:31 +00:00
{
// 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 executable 'home_server'",
"cargo": {
"args": [
"build",
"--bin=home_server",
"--package=home_server"
],
"filter": {
"name": "home_server",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}