mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed zstd master branch no longer working.
This commit is contained in:
parent
990f512941
commit
5aec551bf7
@ -197,7 +197,7 @@ if(MZ_ZLIB)
|
||||
set(PC_PRIVATE_DEPS "zlib")
|
||||
set(ZLIB_COMPAT ON)
|
||||
elseif(MZ_FETCH_LIBS)
|
||||
clone_repo(zlib https://github.com/madler/zlib)
|
||||
clone_repo(zlib https://github.com/madler/zlib master)
|
||||
|
||||
# Don't automatically add all targets to the solution
|
||||
add_subdirectory(${ZLIB_SOURCE_DIR} ${ZLIB_BINARY_DIR} EXCLUDE_FROM_ALL)
|
||||
@ -254,7 +254,7 @@ if(MZ_BZIP2)
|
||||
|
||||
set(PC_PRIVATE_LIBS "${PC_PRIVATE_LIBS} -lbz2")
|
||||
elseif(MZ_FETCH_LIBS)
|
||||
clone_repo(bzip2 https://sourceware.org/git/bzip2.git)
|
||||
clone_repo(bzip2 https://sourceware.org/git/bzip2.git master)
|
||||
|
||||
# BZip2 repository does not support cmake so we have to create
|
||||
# the bzip2 library ourselves
|
||||
@ -315,7 +315,7 @@ if(MZ_LZMA)
|
||||
elseif(MZ_FETCH_LIBS)
|
||||
set(BUILD_TESTING OFF CACHE BOOL "Build lzma tests" FORCE)
|
||||
|
||||
clone_repo(liblzma https://git.tukaani.org/xz.git)
|
||||
clone_repo(liblzma https://git.tukaani.org/xz.git master)
|
||||
|
||||
# Don't automatically add all targets to the solution
|
||||
add_subdirectory(${LIBLZMA_SOURCE_DIR} ${LIBLZMA_BINARY_DIR} EXCLUDE_FROM_ALL)
|
||||
@ -367,7 +367,7 @@ if(MZ_ZSTD)
|
||||
elseif(MZ_FETCH_LIBS)
|
||||
set(ZSTD_BUILD_PROGRAMS OFF CACHE BOOL "Build zstd programs")
|
||||
|
||||
clone_repo(zstd https://github.com/facebook/zstd)
|
||||
clone_repo(zstd https://github.com/facebook/zstd release)
|
||||
|
||||
# Don't automatically add all targets to the solution
|
||||
add_subdirectory(${ZSTD_SOURCE_DIR}/build/cmake ${ZSTD_BINARY_DIR} EXCLUDE_FROM_ALL)
|
||||
|
@ -1,5 +1,5 @@
|
||||
# Checkout remote repository
|
||||
macro(clone_repo name url)
|
||||
macro(clone_repo name url tag)
|
||||
string(TOLOWER ${name} name_lower)
|
||||
string(TOUPPER ${name} name_upper)
|
||||
|
||||
@ -7,7 +7,7 @@ macro(clone_repo name url)
|
||||
set(${name_upper}_REPOSITORY ${url})
|
||||
endif()
|
||||
if(NOT ${name_upper}_TAG)
|
||||
set(${name_upper}_TAG master)
|
||||
set(${name_upper}_TAG ${tag})
|
||||
endif()
|
||||
|
||||
message(STATUS "Fetching ${name} ${${name_upper}_REPOSITORY} ${${name_upper}_TAG}")
|
||||
|
Loading…
x
Reference in New Issue
Block a user