swissChili | aed6ff3 | 2021-05-29 17:51:04 -0700 | [diff] [blame] | 1 | { |
| 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 |
| 3 | // for the documentation about the tasks.json format |
| 4 | "version": "2.0.0", |
| 5 | "tasks": [ |
| 6 | { |
| 7 | "label": "qemu:build", |
| 8 | "type": "shell", |
| 9 | "command": "make -C src/kernel/ debug-wait", |
| 10 | "problemMatcher": [], |
| 11 | "group": { |
| 12 | "kind": "build", |
| 13 | "isDefault": true |
| 14 | } |
swissChili | e00e88a | 2021-05-30 17:54:26 -0700 | [diff] [blame] | 15 | }, |
| 16 | { |
| 17 | "type": "shell", |
| 18 | "label": "sphynx:watch", |
| 19 | "command": "make -C doc/ watch" |
swissChili | 9e57da4 | 2021-06-15 22:22:46 -0700 | [diff] [blame] | 20 | }, |
| 21 | { |
| 22 | "type": "shell", |
| 23 | "label": "buildLisp", |
| 24 | "command": "make -C src/lisp" |
swissChili | aed6ff3 | 2021-05-29 17:51:04 -0700 | [diff] [blame] | 25 | } |
| 26 | ], |
| 27 | } |