LibrarySymbols/.vscode/launch.json
2022-07-23 18:06:39 -07:00

26 lines
822 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 executable 'library_symbols'",
"cargo": {
"args": [
"build",
"--bin=library_symbols",
"--package=library_symbols"
],
"filter": {
"name": "library_symbols",
"kind": "bin"
}
},
"args": ["${workspaceFolder}/symbols"],
"cwd": "${workspaceFolder}"
},
]
}