{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build OBD_Simulator", "type": "shell", "command": "make -f OBD_Simulatormake", "problemMatcher": [ { "owner": "cpp", //"fileLocation": ["relative", "${workspaceFolder}"], "fileLocation": "absolute", "pattern": { "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } } ], "group": { "kind": "build", "isDefault": true } }, { "label": "clean", "type": "shell", "command": "make clean -f OBD_Simulatormake", "problemMatcher": [ "$gcc" ] } ] }