gbserver/.vscode/launch.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-25 17:16:05 -03:00
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug GB Server",
2024-12-25 17:16:05 -03:00
"cargo": {
2024-12-26 10:09:39 -03:00
"args": [
"build",
"--bin=gbserver"
2024-12-26 10:09:39 -03:00
],
2024-12-25 17:16:05 -03:00
"filter": {
"name": "gbserver",
2024-12-25 17:16:05 -03:00
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
},
{
"type": "lldb",
"request": "launch",
"name": "Debug Integration Tests",
"cargo": {
2024-12-26 10:09:39 -03:00
"args": [
"test",
"--no-run",
"--lib",
"--package=gbserver"
2024-12-26 10:09:39 -03:00
],
2024-12-25 17:16:05 -03:00
"filter": {
"name": "integration",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_LOG": "info"
}
2024-12-26 10:09:39 -03:00
},
2024-12-25 17:16:05 -03:00
],
}