From 3ef95bcd33f00aa9d177a1de8d1b0e89978606c5 Mon Sep 17 00:00:00 2001 From: DankParrot Date: Thu, 30 Jul 2020 17:23:32 -0700 Subject: [PATCH] vscode: Add meson reconfigure task --- .vscode/tasks.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 3109054..0e54138 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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",