mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 00:20:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
script_dir="$(dirname "$(readlink -f "$0")")"
 | 
						|
 | 
						|
export build_dir="${1:-${script_dir}/../build-release}"
 | 
						|
export build_type=Release
 | 
						|
export conan_profile=${2:-scwx-linux_gcc-11}
 | 
						|
export generator=Ninja
 | 
						|
export qt_base=/opt/Qt
 | 
						|
export qt_arch=gcc_64
 | 
						|
 | 
						|
# Perform common setup
 | 
						|
${script_dir}/lib/setup-common.sh
 |