| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "debug run",
- "type": "shell",
- "command": "make srun",
- "isBackground": true,
- "problemMatcher": [
- {
- "owner": "rustc",
- "fileLocation": [
- "relative",
- "${workspaceFolder}"
- ],
- "pattern": {
- "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
- "file": 1,
- "line": 2,
- "column": 3,
- "severity": 4,
- "message": 5
- },
- "background": {
- "activeOnStart": true,
- "beginsPattern": "cargo build",
- "endsPattern": "qemu"
- }
- }
- ],
- "presentation": {
- "echo": false,
- "reveal": "always",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "kill qemu",
- "type": "shell",
- "command": "killall qemu-system-x86_64",
- "presentation": {
- "echo": false,
- "reveal": "never",
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": true
- },
- "group": {
- "kind": "none",
- }
- }
- ]
- }
|