All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
10 lines
153 B
CMake
10 lines
153 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(
|
|
glad
|
|
LANGUAGES C
|
|
)
|
|
|
|
add_library(glad src/gl.c)
|
|
target_include_directories(glad PUBLIC "include/")
|