{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "make", "type": "shell", "command": "${workspaceRoot}/make", "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true } }, { "label": "emu", "type": "shell", "command": "${workspaceRoot}/emu", "group": "none", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "group": "test", "showReuseMessage": true, "clear": false }, "problemMatcher": [] }, { "label": "dbg", "type": "shell", "command": "${workspaceRoot}/dbg", "group": "none", "presentation": { "echo": true, "reveal": "always", "focus": true, "panel": "shared", "group": "test", "showReuseMessage": true, "clear": false } }, { "label": "test", "group": { "kind": "test", "isDefault": true }, "dependsOn": [ "emu", "dbg" ], "presentation": { "echo": true, "reveal": "always", "focus": true, "panel": "shared", "showReuseMessage": true, "clear": false } } ] }