18 lines
361 B
JSON
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"
|
|
}
|
|
]
|