mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 08:20:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			902 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
./tools/setup-common.sh
 | 
						|
 | 
						|
build_dir=${1:-build-debug}
 | 
						|
build_type=Debug
 | 
						|
conan_profile=${2:-scwx-linux_gcc-11}
 | 
						|
qt_version=6.8.3
 | 
						|
qt_arch=gcc_64
 | 
						|
script_dir="$(dirname "$(readlink -f "$0")")"
 | 
						|
 | 
						|
conan config install tools/conan/profiles/${conan_profile} -tf profiles
 | 
						|
conan install . \
 | 
						|
    --remote conancenter \
 | 
						|
    --build missing \
 | 
						|
    --profile:all ${conan_profile} \
 | 
						|
    --settings:all build_type=${build_type} \
 | 
						|
    --output-folder ${build_dir}/conan
 | 
						|
 | 
						|
mkdir -p ${build_dir}
 | 
						|
cmake -B ${build_dir} -S . \
 | 
						|
	-DCMAKE_BUILD_TYPE=${build_type} \
 | 
						|
	-DCMAKE_CONFIGURATION_TYPES=${build_type} \
 | 
						|
	-DCMAKE_INSTALL_PREFIX=${build_dir}/${build_type}/supercell-wx \
 | 
						|
	-DCMAKE_PREFIX_PATH=/opt/Qt/${qt_version}/${qt_arch} \
 | 
						|
	-DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=${script_dir}/external/cmake-conan/conan_provider.cmake \
 | 
						|
	-DCONAN_HOST_PROFILE=${conan_profile} \
 | 
						|
	-DCONAN_BUILD_PROFILE=${conan_profile} \
 | 
						|
	-G Ninja
 |