235d00192a
* 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
21 lines
450 B
CMake
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)
|