22 lines
247 B
CMake
22 lines
247 B
CMake
|
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
|
||
|
)
|