[glutils] Move glutils to deps

This commit is contained in:
2023-12-11 22:54:55 -06:00
parent e2545a956b
commit debeb83119
6 changed files with 18 additions and 12 deletions

23
deps/glutils/src/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,23 @@
add_library(
GlUtils
glutils.cpp
)
target_include_directories(
GlUtils PUBLIC
../include
)
target_link_libraries(
GlUtils PUBLIC
OxStd
glad
)
install(
TARGETS
GlUtils
DESTINATION
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)