vscode: Add meson reconfigure task

This commit is contained in:
DankParrot 2020-07-30 17:23:32 -07:00
parent d3d941eb67
commit 3ef95bcd33
1 changed files with 18 additions and 0 deletions

18
.vscode/tasks.json vendored
View File

@ -15,6 +15,24 @@
"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",