Clean-up: modernize pretty_xml.cpp
[lttng-tools.git] / .vscode / tasks.json
1 {
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "shell",
6 "label": "Build LTTng-tools",
7 // Assumes you ran ./bootstrap and ./configure with your preferred options
8 "command": "${workspaceFolder}/.vscode/build.sh ${workspaceFolder}",
9 "options": {
10 "cwd": "${workspaceFolder}"
11 },
12 "problemMatcher": [
13 "$gcc"
14 ],
15 "group": {
16 "kind": "build",
17 "isDefault": true
18 }
19 }
20 ]
21 }
This page took 0.029354 seconds and 4 git commands to generate.