mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-03 08:16:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			369 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			369 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(SRCS
 | 
						|
            src/glad.c
 | 
						|
            )
 | 
						|
set(HEADERS
 | 
						|
            include/KHR/khrplatform.h
 | 
						|
            include/glad/glad.h
 | 
						|
            )
 | 
						|
 | 
						|
create_directory_groups(${SRCS} ${HEADERS})
 | 
						|
add_library(glad STATIC ${SRCS} ${HEADERS})
 | 
						|
target_include_directories(glad PUBLIC "include/")
 | 
						|
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
 | 
						|
    target_link_libraries(glad dl)
 | 
						|
endif()
 |