mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
11 lines
292 B
CMake
11 lines
292 B
CMake
set(GLAD_FILES src/gl.c include/KHR/khrplatform.h)
|
|
|
|
if(WIN32)
|
|
set(GLAD_FILES ${GLAD_FILES} src/glad_wgl.c)
|
|
elseif(NOT APPLE)
|
|
set(GLAD_FILES ${GLAD_FILES} src/glad_egl.c src/glad_glx.c)
|
|
endif()
|
|
|
|
add_library(glad STATIC ${GLAD_FILES})
|
|
|
|
target_include_directories(glad PUBLIC "include")
|