AT-Command/.vscode/tasks.json
2022-12-31 22:42:31 +08:00

39 lines
935 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build",
"command": "make clean & make",
"options": {
"cwd": "${workspaceFolder}/samples/linux"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceFolder}/samples/linux"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": {
"kind": "build",
"isDefault": true
},
}
]
}