Files
space-game/.zed/debug.json
2025-06-22 15:35:23 -04:00

18 lines
361 B
JSON

// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"label": "Debug Run",
"build": {
"command": "cargo",
"args": ["build"]
},
"program": "$ZED_WORKTREE_ROOT/target/debug/space-game.exe",
"cwd": "$ZED_WORKTREE_ROOT",
"request": "launch",
"adapter": "GDB"
}
]