FeatherMC/.vscode/tasks.json

63 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Meson Setup",
"type": "shell",
"command": "meson setup build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Meson Reconfigure",
"type": "shell",
"command": "meson setup",
"args": [
"build",
"--reconfigure"
],
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Build",
"type": "shell",
"command": "ninja",
"args": [
"-C",
"build",
"install"
],
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}/build"]
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
}
]
}