mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Fix typo
This commit is contained in:
parent
42cbcc1380
commit
5d9ded47da
35 changed files with 37343 additions and 21800 deletions
14
third_party/glad/CMakeLists.txt
vendored
14
third_party/glad/CMakeLists.txt
vendored
|
@ -1,7 +1,11 @@
|
|||
add_library(glad STATIC
|
||||
src/gl.c
|
||||
include/glad/gl.h
|
||||
include/KHR/khrplatform.h
|
||||
)
|
||||
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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue