13 lines
296 B
CMake
13 lines
296 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(glad
|
|
VERSION 1.0
|
|
LANGUAGES C
|
|
)
|
|
|
|
file(GLOB_RECURSE HEADERS "include/*.h")
|
|
file(GLOB_RECURSE SOURCES "src/*.c")
|
|
include_directories("include")
|
|
|
|
add_library(glad SHARED ${SOURCES})
|
|
set_target_properties(glad PROPERTIES LINKER_LANGUAGE C)
|