mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 18:20:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| script_source="${BASH_SOURCE[0]:-$0}"
 | |
| script_dir="$(cd "$(dirname "${script_source}")" && pwd)"
 | |
| 
 | |
| cmake_args=(
 | |
|     -B "${build_dir}"
 | |
|     -S "${script_dir}/../.."
 | |
|     -G "${generator}"
 | |
|     -DCMAKE_PREFIX_PATH="${qt_base}/${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}"
 | |
|     -DSCWX_VIRTUAL_ENV="${venv_path}"
 | |
|     -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
 | |
| )
 | |
| 
 | |
| if [[ -n "${build_type}" ]]; then
 | |
|     cmake_args+=(
 | |
|         -DCMAKE_BUILD_TYPE="${build_type}"
 | |
|         -DCMAKE_CONFIGURATION_TYPES="${build_type}"
 | |
|         -DCMAKE_INSTALL_PREFIX="${build_dir}/${build_type}/supercell-wx"
 | |
|     )
 | |
| else
 | |
|     # CMAKE_BUILD_TYPE isn't used to build, but is required by the Conan CMakeDeps generator
 | |
|     cmake_args+=(
 | |
|         -DCMAKE_BUILD_TYPE="Release"
 | |
|         -DCMAKE_CONFIGURATION_TYPES="Debug;Release"
 | |
|     )
 | |
| fi
 | |
| 
 | |
| # Toggle address sanitizer based on argument
 | |
| if [ "${address_sanitizer}" != "disabled" ]; then
 | |
|     cmake_args+=(
 | |
|         -DSCWX_ADDRESS_SANITIZER=ON
 | |
|     )
 | |
| else
 | |
|     cmake_args+=(
 | |
|         -DSCWX_ADDRESS_SANITIZER=OFF
 | |
|     )
 | |
| fi
 | |
| 
 | |
| mkdir -p "${build_dir}"
 | |
| cmake "${cmake_args[@]}"
 | 
