Duckstation/dep/glad/CMakeLists.txt

29 lines
603 B
CMake
Raw Normal View History

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
)
# 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()
target_sources(glad PRIVATE
include/EGL/eglplatform.h
include/glad/egl.h
src/egl.c
)
2020-05-03 17:00:54 +00:00
endif()