ona/.vscode/tasks.json

48 lines
756 B
JSON
Raw Normal View History

2022-08-10 15:52:16 +02:00
{
"version": "2.0.0",
2022-08-10 15:52:16 +02:00
"problemMatcher": {
"source": "zig",
"owner": "cpptools",
"fileLocation": [
"autoDetect",
"${cwd}",
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5,
}
},
"tasks": [
{
"label": "Build Debug",
"type": "shell",
"command": "zig build",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": true,
"revealProblems": "onProblem",
},
},
2022-10-23 19:11:02 +02:00
{
2022-10-23 19:11:02 +02:00
"label": "Build Tests",
"type": "shell",
"command": "zig build test",
2022-10-23 19:11:02 +02:00
"group": "build",
},
],
2022-08-10 15:52:16 +02:00
}