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