mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #453 from yuriks/vs-parallel
CMake: Enable VS parallel builds for a good reduction in compile times
This commit is contained in:
		
						commit
						e5cf344155
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -17,6 +17,7 @@ else() | |||
|     # As far as I can tell, there's no way to override the CMake defaults while leaving user | ||||
|     # changes intact, so we'll just clobber everything and say sorry. | ||||
|     message(STATUS "Cache compiler flags ignored, please edit CMakeFiles.txt to change the flags.") | ||||
|     # /MP - Multi-threaded compilation | ||||
|     # /MD - Multi-threaded runtime | ||||
|     # /Ox - Full optimization | ||||
|     # /Oi - Use intrinsic functions | ||||
|  | @ -24,7 +25,7 @@ else() | |||
|     # /GR- - Disable RTTI | ||||
|     # /GS- - No stack buffer overflow checks | ||||
|     # /EHsc - C++-only exception handling semantics | ||||
|     set(optimization_flags "/MD /Ox /Oi /Oy- /DNDEBUG /GR- /GS- /EHsc") | ||||
|     set(optimization_flags "/MP /MD /Ox /Oi /Oy- /DNDEBUG /GR- /GS- /EHsc") | ||||
|     # /Zi - Output debugging information | ||||
|     # /Zo - enahnced debug info for optimized builds | ||||
|     set(CMAKE_C_FLAGS_RELEASE   "${optimization_flags} /Zi" CACHE STRING "" FORCE) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue