44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
// SPDX-FileCopyrightText: 2022 Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'cook'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=cook",
|
|
"--package=cooking-schedule"
|
|
],
|
|
"filter": {
|
|
"name": "cook",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": ["schedule-csv", "Cucina", "examples/example-schedule.csv"],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'cook'",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--bin=cook",
|
|
"--package=cooking-schedule"
|
|
],
|
|
"filter": {
|
|
"name": "cook",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |