2019-09-09 07:01:26 +00:00
|
|
|
set(SRCS
|
2024-02-25 05:32:26 +00:00
|
|
|
include/glad/gl.h
|
|
|
|
include/KHR/khrplatform.h
|
|
|
|
src/gl.c
|
2019-09-09 07:01:26 +00:00
|
|
|
)
|
|
|
|
|
2020-05-07 12:48:13 +00:00
|
|
|
# Linking as a static library breaks on macOS, see https://github.com/libigl/libigl/issues/751
|
|
|
|
if(APPLE)
|
|
|
|
add_library(glad OBJECT ${SRCS})
|
|
|
|
else()
|
|
|
|
add_library(glad ${SRCS})
|
|
|
|
endif()
|
|
|
|
|
2024-02-25 05:32:26 +00:00
|
|
|
target_include_directories(glad PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
2020-05-03 17:00:54 +00:00
|
|
|
target_link_libraries(glad PRIVATE Threads::Threads "${CMAKE_DL_LIBS}")
|
|
|
|
|
|
|
|
if(WIN32)
|
2024-02-25 05:32:26 +00:00
|
|
|
target_sources(glad PRIVATE
|
|
|
|
include/glad/wgl.h
|
|
|
|
src/wgl.c
|
|
|
|
)
|
2020-05-03 17:00:54 +00:00
|
|
|
else()
|
2023-09-17 02:51:00 +00:00
|
|
|
if(ENABLE_EGL)
|
2024-02-25 05:32:26 +00:00
|
|
|
target_sources(glad PRIVATE
|
|
|
|
include/EGL/eglplatform.h
|
|
|
|
include/glad/egl.h
|
|
|
|
src/egl.c
|
|
|
|
)
|
2020-05-03 17:00:54 +00:00
|
|
|
endif()
|
|
|
|
endif()
|