{ "version": "2.0.0", "tasks": [ { "label": "GW Build (Debug_FLASH)", "type": "process", "command": "powershell.exe", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command", "if (-not $env:S32_GCC_BIN) { Write-Error 'S32_GCC_BIN is not set'; exit 1 }; if (-not $env:S32_MSYS_BIN) { Write-Error 'S32_MSYS_BIN is not set'; exit 1 }; $env:Path = \"$env:S32_GCC_BIN;$env:S32_MSYS_BIN;$env:Path\"; & \"$env:S32_MSYS_BIN\\make.exe\" -C Debug_FLASH all" ], "options": { "cwd": "${workspaceFolder}/GW" }, "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ], "detail": "Required env vars: S32_GCC_BIN, S32_MSYS_BIN" }, { "label": "GW Clean (Debug_FLASH)", "type": "process", "command": "powershell.exe", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command", "if (-not $env:S32_GCC_BIN) { Write-Error 'S32_GCC_BIN is not set'; exit 1 }; if (-not $env:S32_MSYS_BIN) { Write-Error 'S32_MSYS_BIN is not set'; exit 1 }; $env:Path = \"$env:S32_GCC_BIN;$env:S32_MSYS_BIN;$env:Path\"; & \"$env:S32_MSYS_BIN\\make.exe\" -C Debug_FLASH clean" ], "options": { "cwd": "${workspaceFolder}/GW" }, "problemMatcher": [ "$gcc" ], "detail": "Required env vars: S32_GCC_BIN, S32_MSYS_BIN" }, { "label": "GW Rebuild (Debug_FLASH)", "dependsOrder": "sequence", "dependsOn": [ "GW Clean (Debug_FLASH)", "GW Build (Debug_FLASH)" ] } ] }