gps_parser/.vscode/launch.json

64 lines
1.8 KiB
JSON
Raw Normal View History

2021-06-22 06:46:37 +02: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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'gps_parser'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=gps_parser"
],
"filter": {
"name": "gps_parser",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug example 'parse'",
2021-06-22 06:46:37 +02:00
"cargo": {
"args": [
"build",
"--example=parse",
"--package=gps_parser"
2021-06-22 06:46:37 +02:00
],
"filter": {
"name": "parse",
"kind": "example"
2021-06-22 06:46:37 +02:00
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in example 'parse'",
2021-06-22 06:46:37 +02:00
"cargo": {
"args": [
"test",
"--no-run",
"--example=parse",
"--package=gps_parser"
2021-06-22 06:46:37 +02:00
],
"filter": {
"name": "parse",
"kind": "example"
2021-06-22 06:46:37 +02:00
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}