mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-11-04 08:01:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			805 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			805 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
# Build the project on AppVeyor.
 | 
						|
 | 
						|
import os
 | 
						|
from subprocess import check_call
 | 
						|
 | 
						|
build = os.environ['BUILD']
 | 
						|
config = os.environ['CONFIG']
 | 
						|
cmake_command = ['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + config]
 | 
						|
if build == 'mingw':
 | 
						|
  cmake_command.append('-GMinGW Makefiles')
 | 
						|
  build_command = ['mingw32-make', '-j4']
 | 
						|
  test_command = ['mingw32-make', 'test']
 | 
						|
  # Remove the path to Git bin directory from $PATH because it breaks MinGW config.
 | 
						|
  path = os.environ['PATH'].replace(r'C:\Program Files (x86)\Git\bin', '')
 | 
						|
  os.environ['PATH'] = path + r';C:\MinGW\bin'
 | 
						|
else:
 | 
						|
  build_command = ['msbuild', '/m:4', '/p:Config=' + config, 'FORMAT.sln']
 | 
						|
  test_command = ['msbuild', 'RUN_TESTS.vcxproj']
 | 
						|
 | 
						|
check_call(cmake_command)
 | 
						|
check_call(build_command)
 | 
						|
check_call(test_command)
 |