Skip to content

Commit

Permalink
Rename minizip -> minizip-ng
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Sep 19, 2022
1 parent 10d7972 commit 94e46fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#####################
## minizip-ng ##
#####################
find_package(minizip )
if(NOT minizip_FOUND)
find_package(minizip-ng)
if(NOT minizip-ng_FOUND)
set(REPOSITORY "https://github.com/zlib-ng/minizip-ng.git")
set(TAG "3.0.6")
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
minizip-ng
REPOSITORY
${REPOSITORY}
TAG
Expand Down

0 comments on commit 94e46fb

Please sign in to comment.