16 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
if(NOT WIN32)
 | 
						|
    add_library_module(surface linux/system.cpp)
 | 
						|
    target_link_libraries(surface PRIVATE X11)
 | 
						|
 | 
						|
else(WIN32)
 | 
						|
    add_library_module(surface windows/system.cpp)
 | 
						|
 | 
						|
endif()
 | 
						|
 | 
						|
target_link_libraries(
 | 
						|
    surface
 | 
						|
    PUBLIC ecs app math memory tbb
 | 
						|
    PRIVATE logger lt_debug time)
 | 
						|
 | 
						|
add_test_module(surface system.test.cpp)
 | 
						|
add_fuzz_module(surface system.fuzz.cpp)
 |