Lumenarium/.vscode/tasks.json

44 lines
1.3 KiB
JSON
Raw Normal View History

2022-10-24 23:17:35 +00:00
{
// 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
}
}
}
]
}