pushbits/.vscode/tasks.json
2021-01-05 00:27:32 +01:00

35 lines
550 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make build",
"presentation": {
"panel": "shared",
"reveal": "always",
"focus": true
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "test",
"type": "shell",
"command": "make test",
"presentation": {
"panel": "shared",
"reveal": "always",
"focus": true
},
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
}
}
]
}