mirror of
https://github.com/gwm17/Daqromancy.git
synced 2024-11-23 03:08:51 -05:00
11 lines
211 B
CMake
11 lines
211 B
CMake
project(Glad)
|
|
|
|
add_library(glad STATIC)
|
|
|
|
target_include_directories(glad SYSTEM PUBLIC include)
|
|
|
|
target_sources(glad
|
|
PRIVATE src/glad.c
|
|
PRIVATE include/glad/glad.h
|
|
PRIVATE include/KHR/khrplatform.h
|
|
) |