2024-10-12 22:43:10 -06:00
|
|
|
{
|
|
|
|
|
// Use Ctrl+Shift+B to run build tasks.
|
|
|
|
|
// Or "Run Build Task" in the Command Palette.
|
|
|
|
|
"version": "2.0.0",
|
2025-03-22 21:00:51 -04:00
|
|
|
"inputs": [
|
|
|
|
|
{
|
|
|
|
|
"id": "gameVersion",
|
|
|
|
|
"type": "pickString",
|
|
|
|
|
"options": [
|
|
|
|
|
"GZ2E01",
|
|
|
|
|
"GZ2P01",
|
|
|
|
|
"GZ2J01",
|
2025-08-27 20:37:31 -04:00
|
|
|
"RZDE01_00",
|
2025-03-22 21:00:51 -04:00
|
|
|
"ShieldD",
|
|
|
|
|
],
|
|
|
|
|
"default": "GZ2E01",
|
|
|
|
|
"description": "Game version to build."
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-10-12 22:43:10 -06:00
|
|
|
"tasks": [
|
|
|
|
|
{
|
|
|
|
|
"label": "ninja",
|
|
|
|
|
"type": "shell",
|
|
|
|
|
"command": "ninja",
|
|
|
|
|
"group": {
|
|
|
|
|
"kind": "build",
|
|
|
|
|
"isDefault": true
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-03-22 21:00:51 -04:00
|
|
|
{
|
|
|
|
|
"label": "configure",
|
|
|
|
|
"type": "shell",
|
|
|
|
|
"command": "${command:python.interpreterPath} configure.py --version ${input:gameVersion}",
|
|
|
|
|
"problemMatcher": [],
|
|
|
|
|
},
|
2025-06-20 02:41:43 -04:00
|
|
|
{
|
|
|
|
|
"label": "ninja changes_all",
|
|
|
|
|
"type": "shell",
|
|
|
|
|
"command": "ninja changes_all",
|
|
|
|
|
"problemMatcher": [],
|
|
|
|
|
},
|
2024-10-12 22:43:10 -06:00
|
|
|
]
|
|
|
|
|
}
|