mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 09:50:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			840 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			840 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
call tools\setup-common.bat
 | 
						|
 | 
						|
set build_dir=build
 | 
						|
set conan_profile=scwx-win64_msvc2022
 | 
						|
set qt_version=6.8.0
 | 
						|
set qt_arch=msvc2022_64
 | 
						|
 | 
						|
conan config install tools/conan/profiles/%conan_profile% -tf profiles
 | 
						|
conan install . ^
 | 
						|
    --remote conancenter ^
 | 
						|
    --build missing ^
 | 
						|
    --profile:all %conan_profile% ^
 | 
						|
    --settings:all build_type=Debug ^
 | 
						|
    --output-folder %build_dir%/conan
 | 
						|
conan install . ^
 | 
						|
    --remote conancenter ^
 | 
						|
    --build missing ^
 | 
						|
    --profile:all %conan_profile% ^
 | 
						|
    --settings:all build_type=Release ^
 | 
						|
    --output-folder %build_dir%/conan
 | 
						|
 | 
						|
mkdir %build_dir%
 | 
						|
cmake -B %build_dir% -S . ^
 | 
						|
    -DCMAKE_PREFIX_PATH=C:/Qt/%qt_version%/%qt_arch% ^
 | 
						|
    -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=external/cmake-conan/conan_provider.cmake ^
 | 
						|
    -DCONAN_HOST_PROFILE=%conan_profile% ^
 | 
						|
    -DCONAN_BUILD_PROFILE=%conan_profile%
 | 
						|
pause
 |