Skip to content

Commit 1afd1c7

Browse files
committed
- appveyor stuff update
1 parent 8a007bc commit 1afd1c7

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.appveyor/Build.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@echo off
22

33
cd %project_folder%
4+
set SDL2_DIR=%windows_sdl2_dir%
45

56
premake5 vs2019
67

.appveyor/Install.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
appveyor DownloadFile %windows_premake_url% -FileName premake5.zip
44
7z 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%

.appveyor/Install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ curl "$linux_premake_url" -Lo premake5.tar.gz
99
tar xvf premake5.tar.gz
1010

1111
sudo apt-get install -qq \
12-
g++-multilib -y
12+
g++-multilib -y \
13+
libsdl2-dev
1314

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)