2018-01-18 01:37:34 +01:00
|
|
|
add_library(glad STATIC
|
|
|
|
src/glad.c
|
|
|
|
include/KHR/khrplatform.h
|
|
|
|
include/glad/glad.h
|
|
|
|
)
|
2015-08-30 08:37:42 +02:00
|
|
|
|
2018-01-18 01:37:34 +01:00
|
|
|
create_target_directory_groups(glad)
|
2015-08-30 08:37:42 +02:00
|
|
|
target_include_directories(glad PUBLIC "include/")
|
2017-05-28 04:46:26 +02:00
|
|
|
|
2015-09-07 00:34:15 +02:00
|
|
|
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
|
2017-05-28 04:46:26 +02:00
|
|
|
target_link_libraries(glad PRIVATE dl)
|
2015-09-07 00:34:15 +02:00
|
|
|
endif()
|