2022-09-09 22:54:13 +01:00
|
|
|
{
|
2025-05-12 00:21:52 +01:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|