mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-22 05:59:15 +01:00
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "./docker_build.sh update -s -c -d",
|
|
"presentation": {
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
},
|
|
"windows":{
|
|
"command": "wsl -- ./docker_build.sh update -s -c -d"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "build_full",
|
|
"type": "shell",
|
|
"command": "./docker_build.sh release -c -d",
|
|
"presentation": {
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
},
|
|
"windows": {
|
|
"command": "wsl -- ./docker_build.sh update -c -d"
|
|
},
|
|
"group": "build"
|
|
},
|
|
{
|
|
"label": "build_n64",
|
|
"type": "shell",
|
|
"command": "./docker_build.sh n64 -d",
|
|
"presentation": {
|
|
"showReuseMessage": false,
|
|
"clear": true
|
|
},
|
|
"windows": {
|
|
"command": "wsl -- ./docker_build.sh n64 -d"
|
|
},
|
|
"group": "build"
|
|
}
|
|
]
|
|
} |