aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: 29d6b3592ec8530aba7f07c884a89c80e3f11e6c (plain) (blame)
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
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "build",
      "type": "shell",
      "command": "zig build",

      "group": {
        "kind": "build",
        "isDefault": true
      }
    },
    {
      "label": "run",
      "type": "process",
      "command": "zig",
      "args": ["run", "${file}"],
      "group": "build",
      "presentation": {
        "showReuseMessage": false,
        "clear": true
      }
    },
    {
      "label": "test",
      "type": "shell",
      "command": "zig",
      "args": ["test", "${file}", "-femit-bin=zig-cache/bin/test"],

      "group": {
        "kind": "test",
        "isDefault": true
      },
      "presentation": {
        "showReuseMessage": false,
        "clear": true
      }
    }
  ]
}