6 lines
149 B
CMake
6 lines
149 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(Glad)
|
|
|
|
add_library(glad include/glad/glad.h src/glad.c)
|
|
target_include_directories(glad PUBLIC include/)
|