ona/.vscode/launch.json

14 lines
245 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",
2023-07-10 02:10:56 +02:00
"target": "${workspaceRoot}/zig-out/bin/runner",
2023-04-23 16:54:02 +02:00
"cwd": "${workspaceRoot}/debug/",
2023-02-18 04:34:40 +01:00
"valuesFormatting": "parseText"
2022-10-02 13:20:53 +02:00
},
]
}