aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 251c67d90962f62777f44e55db66eec461cc28a2 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
	"version": "2.0.0",
	"command": "C:/msys64/usr/bin/sh.exe",
	"options": { "cwd": "${workspaceFolder}" },
	"args": [ "-c" ],
	"tasks": [
		{
			"label": "build client",
			"group": {
				"isDefault": false,
				"kind": "build"
			},
			"args": [ "make", "-C", "client" ],
			"command": "",
			"type": "shell"
		},
		{
			"label": "build robot",
			"group": {
				"isDefault": false,
				"kind": "build"
			},
			"args": [ "make", "-C", "robot" ],
			"command": "",
			"type": "shell"
		},
		{
			"label": "flash robot",
			"group": {
				"isDefault": false,
				"kind": "test"
			},
			"args": [ "make", "flash", "-C", "robot" ],
			"command": "",
			"type": "shell"
		},
		{
			"label": "clean directories",
			"group": {
				"isDefault": false,
				"kind": "none"
			},
			"args": [ "make", "clean" ],
			"command": "",
			"type": "shell"
		},
		{
			"label": "format source files",
			"group": {
				"isDefault": false,
				"kind": "none"
			},
			"args": [ "make", "format" ],
			"command": "",
			"type": "shell"
		},
	]
}