mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
project("PowerTests")
 | 
						|
 | 
						|
add_compile_options(
 | 
						|
    "-march=x86-64-v3"
 | 
						|
    "-Wno-unused-label"
 | 
						|
    "-Wno-unused-variable")
 | 
						|
 | 
						|
file(GLOB TestFiles *.cpp)
 | 
						|
add_executable(PowerTests ${TestFiles})
 | 
						|
target_link_libraries(PowerTests PUBLIC PowerUtils)
 |