Files
advent-of-code-2022-rust/.vscode/launch.json
2022-12-10 16:30:05 +01:00

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