Improve Pipeline & Misc Improvements (#12)

* split pipeline

* add dedicated doc build step

* parallel builds

* fix permissions

* rm push trigger

* mv gcc ubuntu

* add windows build

* always build the docs

* doc alignment

* checkout recursive

* depend on builds for documentation

* set standard via cmake

* update libCZI to main

* pretty_function win32

* version history update

* disable windows release build

missing dependencies for doc generation

trigger ci on push to main

adapt doc-gen job require only doxygen
This commit is contained in:
m-aXimilian
2025-10-07 17:11:43 +02:00
committed by Maximilian Kueffner
parent fec5c08aaa
commit b1923a490c
9 changed files with 170 additions and 64 deletions
+2 -1
View File
@@ -3,7 +3,7 @@ include(FetchContent)
FetchContent_Declare(
libCZI
GIT_REPOSITORY https://github.com/ZEISS/libczi.git
GIT_TAG 593ee17587214358c535bd036473b1b62945e637
GIT_TAG main
)
if(NOT libCZI_POPULATED)
@@ -13,6 +13,7 @@ if(NOT libCZI_POPULATED)
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_BUILD_PREFER_EXTERNALPACKAGE_RAPIDJSON OFF CACHE BOOL "" FORCE)
set(LIBCZI_DO_NOT_SET_MSVC_RUNTIME_LIBRARY ON CACHE BOOL "" FORCE)
endif()