18 lines
385 B
JSON
18 lines
385 B
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Debug Test",
|
|
"build": {
|
|
"command": "make",
|
|
"args": ["-j8"],
|
|
"cwd": "$ZED_WORKTREE_ROOT/build",
|
|
},
|
|
"program": "$ZED_WORKTREE_ROOT/build/camellya_tests",
|
|
"request": "launch",
|
|
"adapter": "GDB",
|
|
},
|
|
]
|