tasks.json 846 Bytes
Newer Older
annehe9's avatar
annehe9 committed
1
2
3
4
5
6
7
8
9
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Configure",
            "type": "shell",
            "group": "build",
TheNumbat's avatar
no ./    
TheNumbat committed
10
            "command": "runcmake_win.bat configure",
annehe9's avatar
annehe9 committed
11
12
13
14
15
            "problemMatcher": []    
        },
        {
            "label": "Build Release",
            "type": "shell",
TheNumbat's avatar
no ./    
TheNumbat committed
16
            "command": "runcmake_win.bat RelWithDebInfo",
annehe9's avatar
annehe9 committed
17
18
19
20
21
22
23
            "args": [],
            "group": "build",
            "problemMatcher": "$msCompile"
        },
        {
            "label": "Build Debug",
            "type": "shell",
TheNumbat's avatar
no ./    
TheNumbat committed
24
            "command": "runcmake_win.bat Debug",
annehe9's avatar
annehe9 committed
25
26
27
28
29
30
31
            "args": [],
            "group": "build",
            "problemMatcher": "$msCompile"
        }
    ]
}