Files
php-qml/examples/todo/.vscode/tasks.json

51 lines
1.1 KiB
JSON
Raw Normal View History

{
"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"]
},
{
"label": "make integration",
"type": "shell",
"command": "make",
"args": ["integration"],
"problemMatcher": []
},
{
"label": "make appimage",
"type": "shell",
"command": "make",
"args": ["appimage"],
"problemMatcher": ["$gcc"]
}
]
}