beepberry-rp2040/.vscode/tasks.json

22 lines
352 B
JSON
Raw Normal View History

2024-03-24 23:10:49 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make -C build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false
},
}
]
}