{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "windows": { "command": "git-bash ./build/build.sh", "args": ["debug", "win32", "intel" ], }, "osx": { "command": "./build/build.sh", "args": ["debug", "osx", "arm64", ], //"args": ["debug", "osx", "intel", ], }, "linux": { "command": "./build/build.sh", "args": ["debug", "raspi", "intel" ], }, "presentation": { "echo": true, "reveal": "always", "panel": "shared" }, "problemMatcher": { "owner": "cpp", "fileLocation": [ "relative", "${workspaceRoot}" ], "pattern": { "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } } } ] }