summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2023-02-10 20:32:56 +0100
committerJoel Rosdahl <joel@rosdahl.net>2023-02-10 20:33:48 +0100
commit1853902f75567089a5ef46511573c7f352c6c232 (patch)
tree4fabaff0d7ab99c17ce18b27bd8ed303d2fb94ad
parent62ce4a31bb6880510b7e878be411e1d8f06cfa3c (diff)
downloadccache-1853902f75567089a5ef46511573c7f352c6c232.tar.gz
bump: Upgrade to zstd 1.5.4
-rw-r--r--cmake/Findzstd.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Findzstd.cmake b/cmake/Findzstd.cmake
index b68db6ab..d65ddd96 100644
--- a/cmake/Findzstd.cmake
+++ b/cmake/Findzstd.cmake
@@ -48,7 +48,7 @@ if(do_download)
# Although ${zstd_FIND_VERSION} was requested, let's download a newer version.
# Note: The directory structure has changed in 1.3.0; we only support 1.3.0
# and newer.
- set(zstd_version "1.5.2")
+ set(zstd_version "1.5.4")
set(zstd_dir ${CMAKE_BINARY_DIR}/zstd-${zstd_version})
set(zstd_build ${CMAKE_BINARY_DIR}/zstd-build)
@@ -56,7 +56,7 @@ if(do_download)
FetchContent_Declare(
zstd
URL https://github.com/facebook/zstd/releases/download/v${zstd_version}/zstd-${zstd_version}.tar.gz
- URL_HASH SHA256=7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0
+ URL_HASH SHA256=0f470992aedad543126d06efab344dc5f3e171893810455787d38347343a4424
SOURCE_DIR ${zstd_dir}
BINARY_DIR ${zstd_build}
)