diff options
author | Christian Cunningham <cc@localhost> | 2022-04-02 19:03:25 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-02 19:03:25 -0700 |
commit | 2c4dae7cc22db0a29532df63dc969485a3e5e957 (patch) | |
tree | db58f3ecb246a84d56f8e39c0aed1b651e86df0e /.vscode/tasks.json | |
parent | 81cb7fc05c0c8f6a260378fe1312f68cc5da4ce8 (diff) |
VSCodium Build Tasks
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 |