ona/.vscode/launch.json

22 lines
416 B
JSON
Raw Normal View History

{
2022-10-02 13:20:53 +02:00
"version": "0.2.0",
"configurations": [
{
2023-02-18 04:34:40 +01:00
"name": "Runtime",
2022-10-02 13:20:53 +02:00
"type": "gdb",
"request": "launch",
2023-04-23 16:54:02 +02:00
"target": "${workspaceRoot}/zig-out/bin/ona-runner",
"cwd": "${workspaceRoot}/debug/",
2023-02-18 04:34:40 +01:00
"valuesFormatting": "parseText"
2022-10-02 13:20:53 +02:00
},
{
2023-02-18 04:34:40 +01:00
"name": "Build Script",
"type": "python",
2022-10-02 13:20:53 +02:00
"request": "launch",
2023-02-18 04:34:40 +01:00
"program": "./build.py",
"console": "integratedTerminal",
"justMyCode": true
}
2022-10-02 13:20:53 +02:00
]
}