mirror of
https://github.com/okalachev/flix.git
synced 2025-07-27 09:39:33 +00:00
32 lines
677 B
JSON
32 lines
677 B
JSON
{
|
|
"tasks": [
|
|
{
|
|
"label": "Build firmware",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"problemMatcher": [ "$gcc" ],
|
|
"presentation": { "clear": true, "showReuseMessage": false },
|
|
},
|
|
{
|
|
"label": "Upload firmware",
|
|
"type": "shell",
|
|
"command": "make upload",
|
|
"problemMatcher": [ "$gcc" ],
|
|
"presentation": { "clear": true, "showReuseMessage": false }
|
|
},
|
|
{
|
|
"label": "Build simulator",
|
|
"type": "shell",
|
|
"command": "make build_simulator",
|
|
"problemMatcher": [ "$gcc" ],
|
|
"presentation": { "clear": true, "showReuseMessage": false }
|
|
},
|
|
{
|
|
"label": "Clean",
|
|
"type": "shell",
|
|
"command": "make clean",
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
}
|