diff options
Diffstat (limited to '')
| -rwxr-xr-x | .travis-deps.sh | 4 | ||||
| -rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis-deps.sh b/.travis-deps.sh index ab3a32382..9fd21cc57 100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh | |||
| @@ -19,8 +19,8 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then | |||
| 19 | 19 | ||
| 20 | if [ ! -e $HOME/.local/lib/libSDL2.la ]; then | 20 | if [ ! -e $HOME/.local/lib/libSDL2.la ]; then |
| 21 | echo "SDL2 not found in cache, get and build it..." | 21 | echo "SDL2 not found in cache, get and build it..." |
| 22 | wget http://libsdl.org/release/SDL2-2.0.4.tar.gz -O - | tar xz | 22 | wget http://libsdl.org/release/SDL2-2.0.5.tar.gz -O - | tar xz |
| 23 | cd SDL2-2.0.4 | 23 | cd SDL2-2.0.5 |
| 24 | ./configure --prefix=$HOME/.local | 24 | ./configure --prefix=$HOME/.local |
| 25 | make -j4 && make install | 25 | make -j4 && make install |
| 26 | else | 26 | else |
diff --git a/CMakeLists.txt b/CMakeLists.txt index 56503f1ad..5c9b7f86a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -156,7 +156,7 @@ if (ENABLE_SDL2) | |||
| 156 | if (CITRA_USE_BUNDLED_SDL2) | 156 | if (CITRA_USE_BUNDLED_SDL2) |
| 157 | # Detect toolchain and platform | 157 | # Detect toolchain and platform |
| 158 | if (MSVC14 AND ARCHITECTURE_x86_64) | 158 | if (MSVC14 AND ARCHITECTURE_x86_64) |
| 159 | set(SDL2_VER "SDL2-2.0.4") | 159 | set(SDL2_VER "SDL2-2.0.5") |
| 160 | else() | 160 | else() |
| 161 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable CITRA_USE_BUNDLED_SDL2 and provide your own.") | 161 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable CITRA_USE_BUNDLED_SDL2 and provide your own.") |
| 162 | endif() | 162 | endif() |