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