diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0cee14be..e6f6ff6a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,6 +1,78 @@ { "version": "2.0.0", "tasks": [ + { + "label": "Clean", + "type": "shell", + "command": "make clean", + "isBackground": false, + "group": { + "kind": "build", + "isDefault": false + }, + "presentation": { + "reveal": "never", + "panel": "shared" + }, + "options": { + "cwd": "${workspaceFolder}/../", + "shell": { + "executable": "bash", + "args": [ + "-c" + ] + } + } + }, + { + "label": "Build", + "type": "shell", + "command": "make build", + "isBackground": false, + "group": { + "kind": "build", + "isDefault": false + }, + "presentation": { + "reveal": "always", + "panel": "shared" + }, + "options": { + "cwd": "${workspaceFolder}/../", + "shell": { + "executable": "bash", + "args": [ + "-c" + ] + } + } + }, + { + "label": "Run", + "type": "shell", + "command": "make qemu", + "isBackground": false, + "dependsOn": [ + "Build" + ], + "group": { + "kind": "test", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "shared" + }, + "options": { + "cwd": "${workspaceFolder}/../", + "shell": { + "executable": "bash", + "args": [ + "-c" + ] + } + } + }, { "label": "Build Bootloader", "type": "shell",