Files
pixelarium/lib/utilities/CMakeLists.txt
T
m-aXimilian 235d00192a Misc Improvements (#7)
* get rid of optional<ptr> -> double indirection

* more optional cleanup

* fix

* add more render pixel type options

* towards different views

* missing virtual declaration of ShowImage

* fix runtime

* init image view factory

* fix build

Render Image close button re-enable

add readme

init documentation

use awesomeDoxygen

ci build docs

install doxygen

id token permission

add pages write permission
2026-02-16 20:36:48 +01:00

21 lines
450 B
CMake

set(UTILSLIBNAME pixelariumutilslib)
set(UTILSLIBSRC
ILog.hpp
SpdLogger.hpp
SpdLogger.cpp)
add_library(${UTILSLIBNAME} STATIC ${UTILSLIBSRC})
# won't work
# target_compile_options(${UTILSLIBNAME}
# PRIVATE
# "$<$<C_COMPILER_ID:MSVC>:/utf-8>"
# "$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
target_include_directories(${UTILSLIBNAME}
PRIVATE ${spdlog_DIR}/include)
target_link_libraries(${UTILSLIBNAME}
PRIVATE spdlog::spdlog_header_only)