InfiniTime.git

ref: fc5424cb72e477c5f1bbfaeddb5c50b851a965ae

.vscode/tasks.json


 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": []
		}
	]
}