| 1 | @echo off |
| 2 | |
| 3 | curl -L https://www.libsdl.org/release/SDL2-devel-2.0.10-VC.zip -o SDL2.zip |
| 4 | curl -L https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-devel-2.0.15-VC.zip -o SDL2_ttf.zip |
| 5 | curl -L https://www.libsdl.org/projects/SDL_image/release/SDL2_image-devel-2.0.5-VC.zip -o SDL2_image.zip |
| 6 | curl -L https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-devel-2.0.4-VC.zip -o SDL2_mixer.zip |
| 7 | |
| 8 | unzip SDL2.zip -d thirdparty/ |
| 9 | unzip SDL2_ttf.zip -d thirdparty/ |
| 10 | unzip SDL2_image.zip -d thirdparty/ |
| 11 | unzip SDL2_mixer.zip -d thirdparty/ |
| 12 | |
| 13 | move /y thirdparty/SDL2-2.0.10 thirdparty/SDL2 |
| 14 | move /y thirdparty/SDL2_ttf-2.0.15 thirdparty/SDL2_ttf |
| 15 | move /y thirdparty/SDL2_image-2.0.5 thirdparty/SDL2_image |
| 16 | move /y thirdparty/SDL2_mixer-2.0.4 thirdparty/SDL2_mixer |
| 17 | |