ona/.vscode/launch.json

24 lines
514 B
JSON
Raw Normal View History

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