Files
ARMSX1/build-deps.ps1
T

10 lines
322 B
PowerShell
Raw Normal View History

2024-05-11 13:22:06 -03:00
if (Test-Path "SDL2-2.30.3") {
Remove-Item -Recurse "SDL2-2.30.3"
2024-04-21 12:37:45 -03:00
}
2024-05-11 13:22:06 -03:00
$SDL2_URL = "https://github.com/libsdl-org/SDL/releases/download/release-2.30.3/SDL2-devel-2.30.3-mingw.zip"
2024-04-21 12:37:45 -03:00
Invoke-WebRequest -URI $SDL2_URL -OutFile "sdl2.zip"
2024-06-03 00:35:56 -03:00
Expand-Archive "sdl2.zip" -DestinationPath "." -Force
Remove-Item "sdl2.zip"