bce12b0bb4
* can draw from selection
* add light-weight render manager to render many images simultaneously
* [debug me] currently the image close button does not do
* the unselected image can be closed now
* can close images and manually open them on demand
* cosmetic
* image view stuff in render subdirectory
* cosmetic
* generate docs
* review
windows support
some cosmetics
💅 and pin libCZI module
22 lines
633 B
CMake
22 lines
633 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
libCZI
|
|
GIT_REPOSITORY https://github.com/ZEISS/libczi.git
|
|
GIT_TAG 593ee17587214358c535bd036473b1b62945e637
|
|
)
|
|
|
|
if(NOT libCZI_POPULATED)
|
|
message(STATUS "Fetching libCZI")
|
|
FetchContent_MakeAvailable(libCZI)
|
|
|
|
set(LIBCZI_BUILD_CZICMD OFF CACHE BOOL "" FORCE)
|
|
set(LIBCZI_BUILD_DYNLIB OFF CACHE BOOL "" FORCE)
|
|
set(LIBCZI_BUILD_UNITTESTS OFF CACHE BOOL "" FORCE)
|
|
set(LIBCZI_DO_NOT_SET_MSVC_RUNTIME_LIBRARY ON CACHE BOOL "" FORCE)
|
|
endif()
|
|
|
|
FetchContent_GetProperties(libCZI)
|
|
set(LIBCZI_INCLUDE_DIR "${libczi_SOURCE_DIR}/Src/libCZI")
|
|
message(STATUS ${LIBCZI_INCLUDE_DIR})
|