aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-08-10 16:54:13 +0200
committerGitHub <noreply@github.com>2021-08-10 16:54:13 +0200
commit643077341b14a52819cbaf02abbd5fb56cdeb802 (patch)
treef8d130b7003ef38aad7f93f101eae9fa1d0ccea9 /.vscode/tasks.json
parent9fb37550886f09f6510e99a5b452262c53c3987c (diff)
parent44889adda074af2a7a5fe61b19667521755dd24d (diff)
Merge pull request #505 from geekbozu/devcon
VSCode Devcontainer
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