- Add build* to gitignore - Fix year in license file - other changes are result of clang-format
9 lines
215 B
CMake
Executable File
Vendored
9 lines
215 B
CMake
Executable File
Vendored
cmake_minimum_required(VERSION 3.22)
|
|
|
|
add_library(glad source/glad.c)
|
|
target_include_directories(glad
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|