You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.4 KiB
JSON
111 lines
3.4 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "emsBuild Debug",
|
|
"type": "shell",
|
|
"command": "./emsBuild.sh Debug",
|
|
"windows": {
|
|
"command": "./emsBuild.cmd Debug"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": {
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "emsBuild Release",
|
|
"type": "shell",
|
|
"command": "./emsBuild.sh Release",
|
|
"windows": {
|
|
"command": "./emsBuild.cmd Release"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": {
|
|
"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": "emsCMakeGen Debug (& Build)",
|
|
"type": "shell",
|
|
"command": "./emsCMakeGen.sh /opt/emsdk/emscripten/1.38.8 Debug",
|
|
"windows": {
|
|
"command": "./emsCMakeGen.cmd D:/Lang/emsdk/emscripten/1.38.10 Debug"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": {
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "emsCMakeGen Release (& Build)",
|
|
"type": "shell",
|
|
"command": "./emsCMakeGen.sh /opt/emsdk/emscripten/1.38.8 Release",
|
|
"windows": {
|
|
"command": "./emsCMakeGen.cmd D:/Lang/emsdk/emscripten/1.38.10 Release"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": {
|
|
"fileLocation": [
|
|
"absolute"
|
|
],
|
|
"pattern": {
|
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |