]> git.proxmox.com Git - libgit2.git/blob - .vscode/tasks.json
New upstream version 1.4.3+dfsg.1
[libgit2.git] / .vscode / tasks.json
1 {
2 // See https://go.microsoft.com/fwlink/?LinkId=733558
3 // for the documentation about the tasks.json format
4 "version": "2.0.0",
5 "tasks": [
6 {
7 "label": "Build",
8 "type": "shell",
9 "command": "cd build && cmake --build . --parallel",
10 "group": "build",
11 "presentation": {
12 "reveal": "always",
13 "panel": "new"
14 }
15 },
16 {
17 "label": "Run Tests",
18 "type": "shell",
19 "command": "build/libgit2_tests -v",
20 "group": "test",
21 "presentation": {
22 "reveal": "always",
23 "panel": "new"
24 }
25 }
26 ]
27 }