Compare commits

...

1 Commits

Author SHA1 Message Date
673602516f initial debugger config 2025-08-26 16:43:04 -07:00

29
.zed/debug.json Normal file
View File

@@ -0,0 +1,29 @@
// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"label": "Strafe Client",
"adapter": "CodeLLDB",
"program": "target/debug/strafe-client",
"args": [
"tools/bhop_maps/5692113331.snfm"
],
"request": "launch",
"build": {
"command": "cargo",
"args": ["build","-p strafe-client"]
}
},
{
"label": "Integration Testing",
"adapter": "CodeLLDB",
"program": "target/release/integration-testing",
"request": "launch",
"build": {
"command": "cargo",
"args": ["test","-p integration-testing"]
}
}
]