vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / .vscode / tasks.json
CommitLineData
a881d7c9
JG
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.023492 seconds and 4 git commands to generate.