First configuratable JabyEngine prototype

This commit is contained in:
2024-02-09 11:30:55 -05:00
parent cad7d7fa3f
commit 753c46377b
7 changed files with 84 additions and 17 deletions

View File

@@ -27,6 +27,17 @@
},
"group": "build"
},
{
"label": "make custom config",
"type": "shell",
"windows": {
"command": "wsl make ${input:target} BUILD_PROFILE=${input:build cfg} TV_FORMAT=${input:tv format} CUSTOM_CONFIG=${input:custom config}",
},
"linux": {
"command": "make ${input:target} BUILD_PROFILE=${input:build cfg} TV_FORMAT=${input:tv format} CUSTOM_CONFIG=${input:custom config}",
},
"group": "build"
},
{
"label": "combi make",
"type": "shell",
@@ -54,6 +65,13 @@
"default": "PAL",
"description": "TV format to use"
},
{
"id": "custom config",
"type": "pickString",
"options": ["MyConfig"],
"default": "MyConfig",
"description": "The custom configuration to use for this build"
},
{
"id": "target",
"type": "pickString",