This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-variable-monitor/.vscode/tasks.json
2023-11-27 03:18:51 -05:00

98 lines
2.7 KiB
JSON

{
"tasks": [
{
"label": "centos7",
"type": "shell",
"command": "./run.sh",
"presentation": {
"echo": true,
"clear": true,
"group": "vm"
},
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
]
},
// 编译 ucli
{
"label": "make ucli",
"type": "shell",
"command": "make",
"args": [
"-C",
"${workspaceFolder}/source/ucli"
],
"presentation": {
"echo": true,
"clear": true,
"group": "build"
},
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
],
},
// clean ucli
{
"label": "make clean ucli",
"type": "shell",
"command": "make",
"args": [
"clean",
"-C",
"${workspaceFolder}/source/ucli"
],
"presentation": {
"echo": true,
"clear": true,
"group": "build"
},
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
],
},
],
"version": "2.0.0"
}