csbindgen/.vscode/launch.json
2023-02-27 03:31:44 +09:00

43 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'csbindgen'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=csbindgen"
],
"filter": {
"name": "csbindgen",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'csbindgen-tests'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=csbindgen-tests"
],
"filter": {
"name": "csbindgen-tests",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}