diff options
| author | Tim Keller <geekboy1011@gmail.com> | 2021-07-25 20:12:34 (GMT) |
|---|---|---|
| committer | Tim Keller <geekboy1011@gmail.com> | 2021-08-07 18:19:11 (GMT) |
| commit | f7643a4d828ec3c60f418b6d9a660097eb44e05e (patch) | |
| tree | d7bc7202f4f587c0350c84c98bcffdbb9c428e41 /.vscode/tasks.json | |
| parent | c0b84537b35fd358e929962a962c53e50019079e (diff) | |
Added cmake variants
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..17f51f5 --- /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 |
