mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 01:40:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| script_dir="$(dirname "$(readlink -f "$0")")"
 | |
| 
 | |
| export build_dir="$(readlink -f "${1:-${script_dir}/../build-debug}")"
 | |
| export build_type=Debug
 | |
| export conan_profile=${2:-scwx-linux_gcc-11}
 | |
| export generator=Ninja
 | |
| export qt_base=/opt/Qt
 | |
| export qt_arch=gcc_64
 | |
| 
 | |
| # Assign user-specified Python Virtual Environment
 | |
| [ "${3:-}" = "none" ] && unset venv_path || export venv_path="$(readlink -f "${3:-${script_dir}/../.venv}")"
 | |
| 
 | |
| # Perform common setup
 | |
| ${script_dir}/lib/setup-common.sh
 | 
