File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11@ echo off
22
33cd %project_folder%
4+ set SDL2_DIR = %windows_sdl2_dir%
45
56premake5 vs2019
67
Original file line number Diff line number Diff line change 22
33appveyor DownloadFile %windows_premake_url% -FileName premake5.zip
447z x premake5.zip -o%project_folder% -aoa
5+
6+ appveyor DownloadFile %windows_sdl2_url% -FileName SDL2.zip
7+ 7z x SDL2.zip -o%dependency_folder%
Original file line number Diff line number Diff line change @@ -9,5 +9,6 @@ curl "$linux_premake_url" -Lo premake5.tar.gz
99tar xvf premake5.tar.gz
1010
1111sudo apt-get install -qq \
12- g++-multilib -y
12+ g++-multilib -y \
13+ libsdl2-dev
1314
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ environment:
1515 project_folder : ' %APPVEYOR_BUILD_FOLDER%'
1616 # Dependency URLs
1717 windows_premake_url : ' https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-windows.zip'
18+ windows_sdl2_url : ' https://www.libsdl.org/release/SDL2-devel-2.0.12-VC.zip'
1819 linux_premake_url : ' https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-linux.tar.gz'
1920
2021
You can’t perform that action at this time.
0 commit comments