quadrants/build/.vscode/tasks.json

25 lines
421 B
JSON
Raw Normal View History

2023-02-27 14:02:30 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "${workspaceFolder}/build.sh",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false,
"revealProblems": "onProblem"
}
}
]
}