mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 01:40:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
call tools\setup-common.bat
 | 
						|
 | 
						|
set build_dir=build-release
 | 
						|
set build_type=Release
 | 
						|
set qt_version=6.6.2
 | 
						|
 | 
						|
mkdir %build_dir%
 | 
						|
cmake -B %build_dir% -S . ^
 | 
						|
    -DCMAKE_BUILD_TYPE=%build_type% ^
 | 
						|
    -DCMAKE_CONFIGURATION_TYPES=%build_type% ^
 | 
						|
    -DCMAKE_PREFIX_PATH=C:/Qt/%qt_version%/msvc2019_64
 | 
						|
pause
 |