Files
Zivro/.vscode/tasks.json
2025-12-19 21:57:51 +03:00

16 lines
314 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "zig: build",
"type": "shell",
"command": "zig build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"],
}
]
}