diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6dc12130b..b4747db57 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,6 +2,20 @@ // Use Ctrl+Shift+B to run build tasks. // Or "Run Build Task" in the Command Palette. "version": "2.0.0", + "inputs": [ + { + "id": "gameVersion", + "type": "pickString", + "options": [ + "GZLJ01", + "GZLE01", + "GZLP01", + "GZLJ01 --debug", + ], + "default": "GZLE01", + "description": "Game version to build." + }, + ], "tasks": [ { "label": "ninja", @@ -12,5 +26,11 @@ "isDefault": true } }, + { + "label": "configure", + "type": "shell", + "command": "python configure.py --version ${input:gameVersion}", + "problemMatcher": [], + }, ] }