1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-03 02:18:43 +00:00
sys-con/.vscode/tasks.json

52 lines
1.4 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Release",
"type": "shell",
"promptOnClose": true,
"command": "make -j3",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": {
"owner": "cpp",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean only the project files",
"type": "shell",
"promptOnClose": true,
"command": "make clean",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Clean everything",
"type": "shell",
"promptOnClose": true,
"command": "make mrproper",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
}
]
}