mirror of https://github.com/yuzu-mirror/yuzu
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			472 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			472 B
		
	
	
	
		
			Bash
		
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
set -x
 | 
						|
 | 
						|
cd /citra
 | 
						|
 | 
						|
apt-get update
 | 
						|
apt-get install -y build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev libcurl4-openssl-dev libssl-dev wget git
 | 
						|
 | 
						|
# Get a recent version of CMake
 | 
						|
wget https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.sh
 | 
						|
echo y | sh cmake-3.9.0-Linux-x86_64.sh --prefix=cmake
 | 
						|
export PATH=/citra/cmake/cmake-3.9.0-Linux-x86_64/bin:$PATH
 | 
						|
 | 
						|
mkdir build && cd build
 | 
						|
cmake .. -DCMAKE_BUILD_TYPE=Release
 | 
						|
make -j4
 | 
						|
 | 
						|
ctest -VV -C Release
 |