From 868b5919fc1de2e7a03e9250681f3b20f74724cb Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Thu, 19 Jun 2025 19:05:24 -0400 Subject: [PATCH] Add VSCode task for ninja changes_all --- .vscode/tasks.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1a1f9e7a2..4a9d108da 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -33,5 +33,11 @@ "command": "${command:python.interpreterPath} configure.py --version ${input:gameVersion}", "problemMatcher": [], }, + { + "label": "ninja changes_all", + "type": "shell", + "command": "ninja changes_all", + "problemMatcher": [], + }, ] }