ona/.vscode/launch.json

15 lines
276 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Runner",
"type": "gdb",
"request": "launch",
"target": "${workspaceRoot}/zig-out/bin/main",
"cwd": "${workspaceRoot}/debug/",
"valuesFormatting": "parseText",
"preLaunchTask": "Build All"
},
]
}