{ "version": "2.0.0", "tasks": [ { "label": "QEMU (gdb)", "command": "qemu-system-x86_64", "type": "shell", "args": [ "-S", "-s", "-m", "32M", "-cdrom", "${workspaceFolder}/build/teachos-${input:build_type}.iso" ], "isBackground": true, "presentation": { "reveal": "always" }, "group": "build", "problemMatcher": [ { "pattern": { "regexp": "." }, "background": { "activeOnStart": true, "beginsPattern": ".", "endsPattern": "VNC server running on" } } ] }, { "label": "QEMU", "command": "qemu-system-x86_64", "type": "shell", "args": [ "-m", "32M", "-cdrom", "${workspaceFolder}/build/teachos-${input:build_type}.iso" ], "presentation": { "reveal": "always" }, "group": "build", "problemMatcher": [] } ], "inputs": [ { "id": "build_type", "type": "pickString", "default": "Debug", "description": "The build type to boot", "options": [ "Debug", "MinSizeRel" ] } ] }