• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "tasks": [
3        {
4            "type": "shell",
5            "label": "ELFIO Test build",
6            "command": "make",
7            "args": [
8                "INCLUDES=-I..",
9                "CXXFLAGS='-g -O0'"
10            ],
11            "options": {
12                "cwd": "${workspaceRoot}/tests"
13            },
14            "group": {
15                "kind": "build",
16                "isDefault": true
17            },
18            "problemMatcher": [
19                "$gcc"
20            ]
21        },
22        {
23            "type": "shell",
24            "label": "ELF Dump Build",
25            "command": "make",
26            "args": [
27                "INCLUDES=-I..",
28                "CXXFLAGS='-g -O0'"
29            ],
30            "options": {
31                "cwd": "${workspaceRoot}"
32            },
33            "group": {
34                "kind": "build",
35                "isDefault": true
36            }
37        }
38    ],
39    "version": "2.0.0"
40}