aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
blob: ffc533bcc5e6d75a035380e938f429d86e882ab1 (plain)
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
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "run-qemu-silent",
            "type": "shell",
            "command": "SILENT=1 make clean run",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "export-to-sd",
            "type": "shell",
            "command": "make copy"
        },
        {
            "label": "run-qemu",
            "type": "shell",
            "command": "make clean run"
        },
        {
            "label": "default",
            "type": "shell",
            "command": "make"
        }
    ]
}