diff options
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..ffc533b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,30 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "run-qemu-silent", + "type": "shell", + "command": "SILENT=1 make clean run", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "label": "export-to-sd", + "type": "shell", + "command": "make copy" + }, + { + "label": "run-qemu", + "type": "shell", + "command": "make clean run" + }, + { + "label": "default", + "type": "shell", + "command": "make" + } + ] +}
\ No newline at end of file |