xref: /TaskScheduler/.vscode/tasks.json (revision 3fef42a0)
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": "Premake4 - Generate",
8            "type": "shell",
9            "command": "premake4 gmake",
10            "problemMatcher": []
11        },
12        {
13            "label": "Build - Debug64",
14            "type": "shell",
15            "command": "pushd Build/gmake && make config=debug64 && popd",
16            "group": {
17                "kind": "build",
18                "isDefault": true
19            }
20        },
21        {
22            "label": "Build - Release64",
23            "type": "shell",
24            "command": "pushd Build/gmake && make config=release64 && popd",
25            "problemMatcher": [
26                "$gcc"
27            ]
28        },
29        {
30            "label": "Run",
31            "type": "shell",
32            "command": "pushd Bin/ && ./TaskSchedulerTests && popd",
33            "problemMatcher": []
34        }
35    ]
36}