workspace/.vscode/launch.json

45 lines
929 B
JSON
Raw Normal View History

2024-10-08 15:04:06 +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": [
2024-10-08 20:20:43 +00:00
{
"type": "lldb",
"request": "launch",
2024-10-08 21:14:45 +00:00
"name": "Debug executable 'm42_workspace'",
2024-10-08 20:20:43 +00:00
"cargo": {
"args": [
"build",
2024-10-08 21:14:45 +00:00
"--bin=m42_workspace",
"--package=m42_workspace"
2024-10-08 20:20:43 +00:00
],
"filter": {
2024-10-08 21:14:45 +00:00
"name": "m42_workspace",
2024-10-08 20:20:43 +00:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
2024-10-08 15:04:06 +00:00
{
"type": "lldb",
"request": "launch",
2024-10-08 21:14:45 +00:00
"name": "Debug unit tests in executable 'm42_workspace'",
2024-10-08 15:04:06 +00:00
"cargo": {
"args": [
"test",
"--no-run",
2024-10-08 21:14:45 +00:00
"--bin=m42_workspace",
"--package=m42_workspace"
2024-10-08 15:04:06 +00:00
],
"filter": {
2024-10-08 21:14:45 +00:00
"name": "m42_workspace",
2024-10-08 15:04:06 +00:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}