Change CombiMake file to build all flavours; Rename CombiMake

This commit is contained in:
2024-02-13 19:04:36 -05:00
parent 8525bae2e6
commit ac7fbb2ed8
3 changed files with 23 additions and 14 deletions

View File

@@ -28,13 +28,13 @@
"group": "build"
},
{
"label": "combi make",
"label": "make_all",
"type": "shell",
"windows": {
"command": "wsl make -f CombiMake.mk ${input:target} BUILD_PROFILE=${input:build cfg} CUSTOM_CONFIG=${input:config options}",
"command": "wsl make -f MakeAll.mk ${input:target} BUILD_PROFILE=${input:build cfg}",
},
"linux": {
"command": "make -f CombiMake.mk ${input:target} BUILD_PROFILE=${input:build cfg} CUSTOM_CONFIG=${input:config options}",
"command": "make -f MakeAll.mk ${input:target} BUILD_PROFILE=${input:build cfg}",
},
"group": "build"
}