summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 17f51f5efdb27df4419a193da336d2334f1a0569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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": []
		}
	]
}