37 lines
775 B
JSON
37 lines
775 B
JSON
|
|
{
|
||
|
|
"version": "2.0.0",
|
||
|
|
"tasks": [
|
||
|
|
{
|
||
|
|
"label": "make build",
|
||
|
|
"type": "shell",
|
||
|
|
"command": "make",
|
||
|
|
"args": ["build"],
|
||
|
|
"group": { "kind": "build", "isDefault": true },
|
||
|
|
"problemMatcher": ["$gcc"]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"label": "make dev",
|
||
|
|
"type": "shell",
|
||
|
|
"command": "make",
|
||
|
|
"args": ["dev"],
|
||
|
|
"isBackground": true,
|
||
|
|
"presentation": { "reveal": "always", "panel": "dedicated" },
|
||
|
|
"problemMatcher": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"label": "make doctor",
|
||
|
|
"type": "shell",
|
||
|
|
"command": "make",
|
||
|
|
"args": ["doctor"],
|
||
|
|
"problemMatcher": []
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"label": "make quality",
|
||
|
|
"type": "shell",
|
||
|
|
"command": "make",
|
||
|
|
"args": ["quality"],
|
||
|
|
"problemMatcher": ["$gcc"]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|