9 lines
165 B
CMake
9 lines
165 B
CMake
|
cmake_minimum_required(VERSION 3.16)
|
||
|
|
||
|
project(glad)
|
||
|
|
||
|
add_library(glad SHARED)
|
||
|
target_sources(glad PRIVATE src/gl.c)
|
||
|
target_include_directories(glad PUBLIC include)
|
||
|
|