aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorhubmartin <hub.martin@gmail.com>2021-08-11 22:00:55 +0200
committerhubmartin <hub.martin@gmail.com>2021-08-11 22:00:55 +0200
commit0d083a2beac118234f07dacee42f0925420abb42 (patch)
tree14b23e3113b8cf60cf5fa47b4dadebf654181d88 /.vscode/tasks.json
parentabd8f343e48bdfa1dc4c8604d843a5c2d8071bc0 (diff)
parent643077341b14a52819cbaf02abbd5fb56cdeb802 (diff)
Merge branch 'develop' into pinmap
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 00000000..17f51f5e
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,44 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "create openocd build",
+ "type": "shell",
+ "command": "/opt/create_build_openocd.sh",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "presentation": {
+ "reveal": "always",
+ "panel": "shared"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "update submodules",
+ "type": "shell",
+ "command": "git submodule update --init",
+ "options": {
+ "cwd": "${workspaceFolder}"
+ },
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "presentation": {
+ "reveal": "always",
+ "panel": "shared"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "BuildInit",
+ "dependsOn": [
+ "update submodules",
+ "create openocd build"
+ ],
+ "problemMatcher": []
+ }
+ ]
+} \ No newline at end of file