nostalgia/deps/glutils/src/CMakeLists.txt

24 lines
251 B
CMake
Raw Normal View History

add_library(
GlUtils
glutils.cpp
)
2023-12-11 22:54:55 -06:00
target_include_directories(
GlUtils PUBLIC
../include
)
target_link_libraries(
GlUtils PUBLIC
OxStd
glad
)
install(
TARGETS
GlUtils
DESTINATION
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
2023-12-11 22:54:55 -06:00
)