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