[nostalgia] Move GlUtils out of Nostalgia

This commit is contained in:
2023-06-01 23:58:39 -05:00
parent 5c8242490e
commit 8cd2ef2d8b
18 changed files with 45 additions and 38 deletions

View File

@@ -0,0 +1,21 @@
add_library(
GlUtils OBJECT
glutils.cpp
)
if(NOT MSVC)
target_compile_options(GlUtils PRIVATE -Wsign-conversion)
endif()
target_link_libraries(
GlUtils PUBLIC
OxStd
glad
)
install(
FILES
glutils.hpp
DESTINATION
include/glutils
)