blob: 4052e9424f030629db07789b4b5586e4e16c4474 [file] [log] [blame]
swissChiliaed6ff32021-05-29 17:51:04 -07001{
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 }
swissChilie00e88a2021-05-30 17:54:26 -070015 },
16 {
17 "type": "shell",
18 "label": "sphynx:watch",
19 "command": "make -C doc/ watch"
swissChiliaed6ff32021-05-29 17:51:04 -070020 }
21 ],
22}