diff --git a/deps/glad/CMakeLists.txt b/deps/glad/CMakeLists.txt index 740bd512..ea904c9a 100644 --- a/deps/glad/CMakeLists.txt +++ b/deps/glad/CMakeLists.txt @@ -1,2 +1,11 @@ -add_library(glad OBJECT src/glad.c) -target_include_directories(glad PUBLIC include) \ No newline at end of file +add_library(glad src/glad.c) + +target_include_directories(glad PUBLIC include) + +install( + TARGETS + glad + DESTINATION + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib +)