shithub: cstory

ref: 611afe7417d63d716531f2ba9f6ae4a2d570a6b8
dir: /external/glad/CMakeLists.txt/

View raw version
cmake_minimum_required(VERSION 3.8)

if(NOT TARGET glad)

project(glad LANGUAGES C)

add_library(glad STATIC
	"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)