03c4956c3a
Uhh, error indicates that PRIVATE or PUBLIC are just plain unnecessary, removing.
14 lines
336 B
CMake
14 lines
336 B
CMake
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/")
|
|
if (LINUX)
|
|
target_link_libraries(glad dl)
|
|
endif()
|