ultimate_nag52/config_app/.vscode/launch.json

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