mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			701 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			701 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| set -x
 | |
| 
 | |
| #if OS is linux or is not set
 | |
| if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
 | |
|     export CC=gcc-5
 | |
|     export CXX=g++-5
 | |
|     mkdir -p $HOME/.local
 | |
| 
 | |
|     curl -L http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-i386.tar.gz \
 | |
|         | tar -xz -C $HOME/.local --strip-components=1
 | |
| 
 | |
|     (
 | |
|         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 unlink cmake
 | |
|     brew install cmake31 qt5 sdl2 dylibbundler
 | |
|     gem install xcpretty
 | |
| fi
 | 
