ona/.vscode/launch.json

24 lines
687 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Test",
"type": "gdb",
"request": "launch",
"target": "${workspaceRoot}/zig-out/bin/test",
"cwd": "${workspaceRoot}/src/demos/",
"valuesFormatting": "parseText",
"preLaunchTask": "Build"
},
{
"name": "Debug Graphics Demo",
"type": "gdb",
"request": "launch",
"target": "${workspaceRoot}/zig-out/bin/graphics_demo",
"cwd": "${workspaceRoot}/src/demos/",
"valuesFormatting": "parseText",
"preLaunchTask": "Build"
}
]
}