ona/.vscode/launch.json

15 lines
281 B
JSON
Raw Normal View History

{
2022-10-02 13:20:53 +02:00
"version": "0.2.0",
"configurations": [
{
2023-07-10 02:10:56 +02:00
"name": "Runner",
2022-10-02 13:20:53 +02:00
"type": "gdb",
"request": "launch",
"target": "${workspaceRoot}/zig-out/bin/main",
2023-04-23 16:54:02 +02:00
"cwd": "${workspaceRoot}/debug/",
2024-07-06 04:25:09 +02:00
"valuesFormatting": "prettyPrinters",
"preLaunchTask": "Build All"
2022-10-02 13:20:53 +02:00
},
]
}