Skip to content

Commit

Permalink
Update minizip-ng 3.0.6->4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Nov 20, 2023
1 parent 0d6bebf commit f3c1161
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions cmake/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
#####################
## minizip-ng ##
#####################
find_package(minizip-ng)
if(NOT minizip-ng_FOUND)
set(REPOSITORY "https://github.com/zlib-ng/minizip-ng.git")
set(TAG "4.0.1")
set(CMAKE_ARGS_MZ "-DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_DIR} -DMZ_LZMA=OFF -DMZ_ZSTD=OFF -DMZ_BZIP2=OFF -DMZ_PKCRYPT=OFF -DMZ_WZAES=OFF -DMZ_OPENSSL=OFF -DMZ_ICONV=OFF -DMZ_COMPAT=OFF")

build_git_dependency(
NAME
minizip-ng
REPOSITORY
${REPOSITORY}
TAG
${TAG}
CMAKE_ARGS
"${CMAKE_ARGS_MZ} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
)

endif()
##############
## wxWidgets ##
##############
Expand Down

0 comments on commit f3c1161

Please sign in to comment.