SummerCart64/.vscode/tasks.json

73 lines
2.1 KiB
JSON
Raw Normal View History

2022-01-02 09:46:57 +01:00
{
"version": "2.0.0",
"tasks": [
{
2022-05-15 15:47:12 +02:00
"label": "build_bootloader",
2022-01-02 09:46:57 +01:00
"type": "shell",
2022-05-15 15:47:12 +02:00
"command": "./docker_build.sh bootloader",
2022-01-07 15:01:43 +01:00
"presentation": {
"showReuseMessage": false,
"clear": true
},
2022-05-15 15:47:12 +02:00
"windows": {
"command": "wsl -- ./docker_build.sh bootloader"
2022-01-02 09:46:57 +01:00
},
2022-05-15 15:47:12 +02:00
"group": "build"
2022-01-02 09:46:57 +01:00
},
{
2022-05-15 15:47:12 +02:00
"label": "build_controller",
2022-01-02 09:46:57 +01:00
"type": "shell",
2022-05-15 15:47:12 +02:00
"command": "./docker_build.sh controller",
2022-01-07 15:01:43 +01:00
"presentation": {
"showReuseMessage": false,
"clear": true
},
2022-01-02 09:46:57 +01:00
"windows": {
2022-05-15 15:47:12 +02:00
"command": "wsl -- ./docker_build.sh controller"
2022-01-02 09:46:57 +01:00
},
"group": "build"
},
{
2022-05-15 15:47:12 +02:00
"label": "build_fpga",
2022-01-02 09:46:57 +01:00
"type": "shell",
2022-05-15 15:47:12 +02:00
"command": "./docker_build.sh fpga",
2022-01-07 15:01:43 +01:00
"presentation": {
"showReuseMessage": false,
"clear": true
},
2022-01-02 09:46:57 +01:00
"windows": {
2022-05-15 15:47:12 +02:00
"command": "wsl -- ./docker_build.sh fpga"
2022-01-02 09:46:57 +01:00
},
"group": "build"
2022-05-15 15:47:12 +02:00
},
{
"label": "build_update",
"type": "shell",
"command": "./docker_build.sh update",
"presentation": {
"showReuseMessage": false,
"clear": true
},
"windows": {
"command": "wsl -- ./docker_build.sh update"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build_release",
"type": "shell",
"command": "./docker_build.sh release --force-clean",
"presentation": {
"showReuseMessage": false,
"clear": true
},
"windows":{
"command": "wsl -- ./docker_build.sh release --force-clean"
},
"group": "build"
},
2022-01-02 09:46:57 +01:00
]
}