summaryrefslogtreecommitdiffstats
path: root/externals/glad/CMakeLists.txt
blob: ebc5db1f292a121ce29baa6d058763346a45b142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
set(SRCS
            src/glad.c
            )
set(HEADERS
            include/KHR/khrplatform.h
            include/glad/glad.h
            )

create_directory_groups(${SRCS} ${HEADERS})
add_library(glad STATIC ${SRCS} ${HEADERS})
target_include_directories(glad PUBLIC "include/")