ona/.vscode/launch.json

25 lines
555 B
JSON
Raw Normal View History

{
2022-10-02 13:20:53 +02:00
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
2022-10-02 13:20:53 +02:00
"type": "gdb",
"request": "launch",
"target": "${workspaceFolder}/zig-out/bin/ona",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"preLaunchTask": "Build Debug",
2022-10-02 13:20:53 +02:00
},
{
"name": "Test",
"type": "gdb",
"request": "launch",
"target": "${workspaceFolder}/zig-cache/o/2c2b6e0f85a1dcd7caa00765b05ec679/test",
"arguments": "main.zig",
2022-10-02 13:20:53 +02:00
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"preLaunchTask": "Build Test",
2022-10-02 13:20:53 +02:00
},
]
}