summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 4edc48b2e8f22cdddcb20b5fd0cfe81d4cac7749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "cmake",
			"label": "CMake: build",
			"command": "build",
			"targets": [
				"all"
			],
			"group": "build",
			"problemMatcher": [],
			"detail": "CMake template build task"
		}
	]
}