aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 8af62cdcb92c59b25e4b84d9e42799d368c4e484 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
	"version": "2.0.0",
	"windows": {
		"options": {
			"cwd": "${workspaceFolder}",
			"shell": {
				"executable": "C:/msys64/msys2_shell.cmd",
				"args": [ "-defterm", "-no-start", "-mingw64", "-shell", "sh", "-here", "-c" ]
			},
		},
	},
	"tasks": [
		{
			"label": "stm32/build",
			"detail": "build stm32 code without uploading",
			"group": {
				"isDefault": false,
				"kind": "build"
			},
			"options": { "cwd": "${workspaceFolder}/stm32f091" },
			"windows": {
				"command": "make -j",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "-j" ],
			"type": "shell"
		},
		{
			"label": "stm32/flash",
			"detail": "build and upload to stm32",
			"group": {
				"isDefault": false,
				"kind": "test"
			},
			"options": { "cwd": "${workspaceFolder}/stm32f091" },
			"windows": {
				"command": "make -j flash",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "-j", "flash" ],
			"type": "shell"
		},
		{
			"label": "stm32/compiledb",
			"detail": "generate editor autocomplete files for stm23 source code",
			"group": {
				"isDefault": false,
				"kind": "test"
			},
			"options": { "cwd": "${workspaceFolder}/stm32f091" },
			"windows": {
				"command": "make -j compile_commands",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "-j", "compile_commands" ],
			"type": "shell"
		},
		{
			"label": "client/build",
			"detail": "build qt client application",
			"group": {
				"isDefault": false,
				"kind": "build"
			},
			"options": { "cwd": "${workspaceFolder}" },
			"windows": {
				"command": "make -j client",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "-j", "client" ],
			"type": "shell"
		},
		{
			"label": "client/compiledb",
			"detail": "generate editor autocomplete files for qt client source code",
			"group": {
				"isDefault": false,
				"kind": "test"
			},
			"options": { "cwd": "${workspaceFolder}" },
			"windows": {
				"command": "make -j client_compile_commands",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "-j", "client_compile_commands" ],
			"type": "shell"
		},
		{
			"label": "clean",
			"detail": "remove binary files from working directory",
			"group": {
				"isDefault": false,
				"kind": "test"
			},
			"options": { "cwd": "${workspaceFolder}" },
			"windows": {
				"command": "make clean",
				"args": [ "" ],
			},
			"command": "make",
			"args": [ "clean" ],
			"type": "shell"
		}
	]
}