SummerCart64/.vscode/tasks.json
Polprzewodnikowy dafa515e4f exception
2022-01-07 15:01:43 +01:00

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_bootloader",
"type": "shell",
"command": "./docker_build.sh n64 -d",
"presentation": {
"showReuseMessage": false,
"clear": true
},
"windows": {
"command": "wsl -- ./docker_build.sh n64 -d"
},
"group": "build"
}
]
}