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
23 lines
512 B
CMake
23 lines
512 B
CMake
set(RENDERLIBNAME pixelariumrenderlib)
|
|
|
|
set(RENDERLIBSRC
|
|
CvMatRender.hpp
|
|
CvMatRender.cpp
|
|
RenderImageManager.hpp
|
|
RenderImageManager.cpp
|
|
IPixelariumImageView.hpp
|
|
PixelariumImageViewDefault.hpp
|
|
PixelariumImageViewDefault.cpp
|
|
ImageViewFactory.hpp
|
|
ImageViewFactory.cpp)
|
|
|
|
add_library(${RENDERLIBNAME} STATIC
|
|
${RENDERLIBSRC})
|
|
|
|
target_link_libraries(${RENDERLIBNAME}
|
|
PRIVATE pixelariumimagelib)
|
|
|
|
target_include_directories(${RENDERLIBNAME}
|
|
PRIVATE ${CMAKE_SOURCE_DIR}/lib
|
|
PRIVATE ${imgui_DIR})
|