From e9938a8839af177e72124c6f91b5dd42e59a13ca Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 16 Mar 2024 14:13:08 +0200 Subject: [PATCH] Fetch fmt 10.2.1.tar.gz and check sha256 --- cmake/fmtlib.cmake | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmake/fmtlib.cmake b/cmake/fmtlib.cmake index 8a16123d..cb9af1da 100644 --- a/cmake/fmtlib.cmake +++ b/cmake/fmtlib.cmake @@ -2,10 +2,8 @@ include(FetchContent) FetchContent_Declare( fmt - GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG e69e5f977d458f2650bb346dadf2ad30c5320281 # 10.2.1 - GIT_SHALLOW ON - GIT_PROGRESS TRUE + URL https://github.com/fmtlib/fmt/archive/refs/tags/10.2.1.tar.gz + URL_HASH SHA256=1250e4cc58bf06ee631567523f48848dc4596133e163f02615c97f78bab6c811 ) FetchContent_GetProperties(fmt)