ona/.vscode/launch.json

35 lines
1.1 KiB
JSON
Raw Normal View History

{
"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"
},
2025-09-18 19:07:29 +01:00
{
"name": "Debug Qoi",
"type": "gdb",
"request": "launch",
"target": "${workspaceRoot}/qoi-master/qoiconv",
"arguments": "${workspaceRoot}/src/demos/graphics_image.qoi ${workspaceRoot}/test.qoi",
"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"
}
]
}