ona/.vscode/tasks.json

26 lines
447 B
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"command": "python3",
"args": ["${workspaceFolder}/build.py"],
"problemMatcher": "$gcc",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true,
"revealProblems": "onProblem"
},
"group": {
"kind": "build",
"isDefault": true
},
}
]
}