1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-05 10:48:46 +00:00
sys-con/.vscode/tasks.json

52 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2019-12-08 18:46:22 +00:00
{
"version": "2.0.0",
"tasks": [
{
2020-01-12 02:01:44 +00:00
"label": "Build Release",
2019-12-08 18:46:22 +00:00
"type": "shell",
"promptOnClose": true,
"command": "make -j3",
2019-12-08 18:46:22 +00:00
"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
}
},
{
2020-03-10 18:23:10 +00:00
"label": "Clean only the project files",
2019-12-08 18:46:22 +00:00
"type": "shell",
"promptOnClose": true,
2020-01-12 02:01:44 +00:00
"command": "make clean",
2019-12-08 18:46:22 +00:00
"presentation": {
"reveal": "always",
"panel": "shared"
},
2020-03-10 18:23:10 +00:00
"problemMatcher": []
},
{
"label": "Clean everything",
"type": "shell",
"promptOnClose": true,
"command": "make mrproper",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
2019-12-08 18:46:22 +00:00
}
]
}