This commit is contained in:
John Smith
2023-03-03 17:17:23 -05:00
parent ff9b421631
commit d527c4c8e7
4 changed files with 44 additions and 13 deletions

16
.vscode/launch.json vendored
View File

@@ -9,21 +9,31 @@
"request": "attach",
"name": "Attach to veilid-server",
"program": "${workspaceFolder}/target/debug/veilid-server",
"pid": "${command:pickMyProcess}"
"pid": "${command:pickMyProcess}",
"sourceLanguages": [
"rust"
]
},
{
"type": "lldb",
"request": "attach",
"name": "Attach to veilid-cli",
"program": "${workspaceFolder}/target/debug/veilid-cli",
"pid": "${command:pickMyProcess}"
"pid": "${command:pickMyProcess}",
"sourceLanguages": [
"rust"
]
},
{
"type": "lldb",
"request": "attach",
"name": "Attach to veilid-flutter example",
"program": "${workspaceFolder}/veilid-flutter/example/build/linux/x64/debug/bundle/veilid_example",
"pid": "${command:pickMyProcess}"
"pid": "${command:pickMyProcess}",
"sourceLanguages": [
"rust",
"dart"
]
},
{
"type": "lldb",