22 lines
284 B
CMake
22 lines
284 B
CMake
add_library(
|
|
NostalgiaGlUtils OBJECT
|
|
glutils.cpp
|
|
)
|
|
|
|
if(NOT MSVC)
|
|
target_compile_options(NostalgiaGlUtils PRIVATE -Wsign-conversion)
|
|
endif()
|
|
|
|
target_link_libraries(
|
|
NostalgiaGlUtils PUBLIC
|
|
OxStd
|
|
glad
|
|
)
|
|
|
|
install(
|
|
FILES
|
|
glutils.hpp
|
|
DESTINATION
|
|
include/nostalgia/glutils
|
|
)
|