cave-story-solaris/external/glad/CMakeLists.txt
2020-04-03 02:00:51 +01:00

16 lines
299 B
CMake

cmake_minimum_required(VERSION 3.12)
if(NOT TARGET glad)
project(glad LANGUAGES C)
add_library(glad
"include/glad/glad.h"
"include/KHR/khrplatform.h"
"src/glad.c"
)
target_include_directories(glad PUBLIC "include")
target_link_libraries(glad PRIVATE ${CMAKE_DL_LIBS})
endif(NOT TARGET glad)