9 lines
132 B
CMake
9 lines
132 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
add_library(glad STATIC
|
|
src/glad.c
|
|
)
|
|
|
|
target_include_directories(glad PUBLIC
|
|
include
|
|
) |