mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 21:01:05 +00:00
03c4956c3a
Uhh, error indicates that PRIVATE or PUBLIC are just plain unnecessary, removing.
15 lines
336 B
CMake
15 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()
|