mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			311 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			311 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| project("PowerSample")
 | |
| 
 | |
| add_compile_options(
 | |
|     "/D_HAS_EXCEPTIONS=0"
 | |
|     "/fp:strict"
 | |
|     "/GS-"
 | |
|     "/EHa-"
 | |
|     "-march=sandybridge"
 | |
|     "-fno-strict-aliasing")
 | |
| 
 | |
| file(GLOB RecompiledFiles *.cpp)
 | |
| add_library(PowerSample ${RecompiledFiles})
 | |
| 
 | |
| target_precompile_headers(PowerSample PUBLIC "ppc_recomp_shared.h")
 | 
