From 73b422f3388e5c583fb554d8237675370ade1c97 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Wed, 16 Oct 2024 01:40:12 +0200 Subject: [PATCH] Update zsync2 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca9cd0b..8e6fc09 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ include(GNUInstallDirs) include(FetchContent) -option(USE_SYSTEM_ZSYNC2 OFF "Use existing libzsync2 installed on system (or inside CMAKE_PREFIX_PATH)") +option(USE_SYSTEM_ZSYNC2 "Use existing libzsync2 installed on system (or inside CMAKE_PREFIX_PATH)" OFF) if(USE_SYSTEM_ZSYNC2) set(USE_SYSTEM_CPR ON) @@ -52,7 +52,7 @@ else() function(import_zsync2) FetchContent_Declare(zsync2 GIT_REPOSITORY https://github.com/AppImageCommunity/zsync2 - GIT_TAG 2.0.0-alpha-1-20230304 + GIT_TAG 2.0.0-alpha-1-20241016 ) FetchContent_MakeAvailable(zsync2) endfunction()