Files
oxkerclone/.vscode/launch.json
T
2022-07-28 17:18:00 +00:00

45 lines
865 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 'oxker'",
"cargo": {
"args": [
"build",
"--bin=oxker",
"--package=oxker"
],
"filter": {
"name": "oxker",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'oxker'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=oxker",
"--package=oxker"
],
"filter": {
"name": "oxker",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}