mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 20:28:15 -05:00
Dependencies: Remove GLFW, Add SDL2
citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files
This commit is contained in:
@ -13,18 +13,13 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
||||
| tar -xz -C $HOME/.local --strip-components=1
|
||||
|
||||
(
|
||||
git clone https://github.com/glfw/glfw.git --branch 3.1.1 --depth 1
|
||||
mkdir glfw/build && cd glfw/build
|
||||
cmake -DBUILD_SHARED_LIBS=ON \
|
||||
-DGLFW_BUILD_EXAMPLES=OFF \
|
||||
-DGLFW_BUILD_TESTS=OFF \
|
||||
-DCMAKE_INSTALL_PREFIX=$HOME/.local \
|
||||
..
|
||||
wget http://libsdl.org/release/SDL2-2.0.4.tar.gz -O - | tar xz
|
||||
cd SDL2-2.0.4
|
||||
./configure --prefix=$HOME/.local
|
||||
make -j4 && make install
|
||||
)
|
||||
|
||||
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||
brew update > /dev/null # silence the very verbose output
|
||||
brew install qt5 glfw3
|
||||
brew install qt5 sdl2
|
||||
gem install xcpretty
|
||||
fi
|
||||
|
Reference in New Issue
Block a user