{ "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": ".", } } ], }, { "label": "run_qemu", "type": "shell", "command": "./run_qemu.sh", "presentation": { "echo": true, "clear": true, "group": "vm" }, "isBackground": true, "problemMatcher": [ { "pattern": [ { "regexp": ".", "file": 1, "location": 2, "message": 3 } ], "background": { "activeOnStart": true, "beginsPattern": ".", "endsPattern": ".", } } ] }, ], "version": "2.0.0" }