From 9765df756eaa049fe32c3e395761d0594ab0f170 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Wed, 26 Mar 2025 15:08:11 +0100 Subject: [PATCH] Update dependencies --- 3rdParty/libarchive/ext/CMakeLists.txt | 4 ++-- 3rdParty/libstud-uuid/CMakeLists.txt | 2 ++ 3rdParty/units/CMakeLists.txt | 2 +- 3rdParty/yaml-cpp/CMakeLists.txt | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/3rdParty/libarchive/ext/CMakeLists.txt b/3rdParty/libarchive/ext/CMakeLists.txt index 146491b..adbddda 100644 --- a/3rdParty/libarchive/ext/CMakeLists.txt +++ b/3rdParty/libarchive/ext/CMakeLists.txt @@ -32,7 +32,7 @@ ExternalProject_Add(zlib ExternalProject_Add(zstd GIT_REPOSITORY ${ZSTD_REPO} - GIT_TAG v1.5.5 + GIT_TAG v1.5.7 GIT_SHALLOW TRUE SOURCE_DIR zstd SOURCE_SUBDIR build/cmake @@ -76,7 +76,7 @@ ExternalProject_Add( libarchive DEPENDS zlib zstd lz4 GIT_REPOSITORY ${LIBARCHIVE_REPO} - GIT_TAG v3.7.4 + GIT_TAG v3.7.9 GIT_SHALLOW TRUE SOURCE_DIR libarchive BINARY_DIR libarchive-build diff --git a/3rdParty/libstud-uuid/CMakeLists.txt b/3rdParty/libstud-uuid/CMakeLists.txt index c0569a5..6c96256 100644 --- a/3rdParty/libstud-uuid/CMakeLists.txt +++ b/3rdParty/libstud-uuid/CMakeLists.txt @@ -4,6 +4,8 @@ if(NOT DEFINED LIBSTUD_REPO) set(LIBSTUD_REPO https://git.madvoxel.net/Mirrors/libstud-uuid.git) endif () +set(FETCHCONTENT_UPDATES_DISCONNECTED ON) + FetchContent_Declare( libstud-uuid EXCLUDE_FROM_ALL diff --git a/3rdParty/units/CMakeLists.txt b/3rdParty/units/CMakeLists.txt index 6448fee..9a0ee0d 100644 --- a/3rdParty/units/CMakeLists.txt +++ b/3rdParty/units/CMakeLists.txt @@ -8,7 +8,7 @@ FetchContent_Declare( units EXCLUDE_FROM_ALL GIT_REPOSITORY ${UNITS_REPO} - GIT_TAG v2.3.3 + GIT_TAG master GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(units) diff --git a/3rdParty/yaml-cpp/CMakeLists.txt b/3rdParty/yaml-cpp/CMakeLists.txt index 076fc3d..13be44e 100644 --- a/3rdParty/yaml-cpp/CMakeLists.txt +++ b/3rdParty/yaml-cpp/CMakeLists.txt @@ -8,7 +8,7 @@ FetchContent_Declare( yaml-cpp EXCLUDE_FROM_ALL GIT_REPOSITORY ${YAMLCPP_REPO} - GIT_TAG 0.8.0 + GIT_TAG master GIT_SHALLOW TRUE ) set(YAML_CPP_BUILD_TOOLS OFF CACHE BOOL "" FORCE)