{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Build", "command": "make clean & make", "options": { "cwd": "${workspaceFolder}/samples/linux" }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared" }, "problemMatcher": { "owner": "cpp", "fileLocation": [ "relative", "${workspaceFolder}/samples/linux" ], "pattern": { "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } }, "group": { "kind": "build", "isDefault": true }, } ] }