MacroBoard-rs/.vscode/launch.json
2022-07-25 17:42:27 +02:00

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