ona/.vscode/launch.json

34 lines
742 B
JSON
Raw Normal View History

{
2022-10-02 13:20:53 +02:00
"version": "0.2.0",
"configurations": [
{
2022-10-23 19:11:02 +02:00
"name": "Ona",
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
},
2022-10-23 19:11:02 +02:00
{
"name": "Oar",
"type": "gdb",
"request": "launch",
"target": "${workspaceFolder}/zig-out/bin/oar",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"preLaunchTask": "Build Debug",
},
2022-10-02 13:20:53 +02:00
{
"name": "Test",
"type": "gdb",
"request": "launch",
"target": "${workspaceFolder}/zig-out/bin/test",
"arguments": "main.zig",
2022-10-02 13:20:53 +02:00
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"preLaunchTask": "Build Tests",
2022-10-02 13:20:53 +02:00
},
]
}