v / .github / workflows
Raw file | 16 loc (13 sloc) | 756 bytes | Latest commit hash f724a4d82
1@echo off
2
3curl -L https://www.libsdl.org/release/SDL2-devel-2.0.10-VC.zip -o SDL2.zip
4curl -L https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-devel-2.0.15-VC.zip -o SDL2_ttf.zip
5curl -L https://www.libsdl.org/projects/SDL_image/release/SDL2_image-devel-2.0.5-VC.zip -o SDL2_image.zip
6curl -L https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-devel-2.0.4-VC.zip -o SDL2_mixer.zip
7
8unzip SDL2.zip -d thirdparty/
9unzip SDL2_ttf.zip -d thirdparty/
10unzip SDL2_image.zip -d thirdparty/
11unzip SDL2_mixer.zip -d thirdparty/
12
13move /y thirdparty/SDL2-2.0.10 thirdparty/SDL2
14move /y thirdparty/SDL2_ttf-2.0.15 thirdparty/SDL2_ttf
15move /y thirdparty/SDL2_image-2.0.5 thirdparty/SDL2_image
16move /y thirdparty/SDL2_mixer-2.0.4 thirdparty/SDL2_mixer