From c8df31ee8911c4ee712944100ab9281dd081cb8f Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 17 Mar 2023 17:03:51 +0100 Subject: [PATCH 1/2] CMake: Update `tl::expected` to v1.1.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a6b25..31ce500 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -249,7 +249,7 @@ set(EXPECTED_BUILD_TESTS OFF) FetchContent_Declare( expected GIT_REPOSITORY https://github.com/TartanLlama/expected - GIT_TAG b74fecd4448a1a5549402d17ddc51e39faa5020c # latest + GIT_TAG 292eff8bd8ee230a7df1d6a1c00c4ea0eb2f0362 # v1.1.0 GIT_SHALLOW ON GIT_PROGRESS ON ) -- GitLab From 54d2179858f50ab8c75d4ae9994ef96a77c589ea Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 17 Mar 2023 17:07:29 +0100 Subject: [PATCH 2/2] CMake: Update `genopts` to current `HEAD` --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31ce500..3b58da3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -233,8 +233,10 @@ message(STATUS "[${PROJECT_NAME}] Downloading and building genopts") FetchContent_Declare( genopts GIT_REPOSITORY https://storage.bsc.es/gitlab/utils/genopts - GIT_TAG 1dcef400f8fbc6e1969c856ca844707b730c3002 # v0.1.0-pre - GIT_SHALLOW ON + GIT_TAG c456c2d8ec92f26d9074b123446261103e5c847c # v0.1.0-pre + # enabling GIT_SHALLOW when the GIT_TAG value is not backed by an + # actual tag is problematic + GIT_SHALLOW OFF GIT_PROGRESS ON ) -- GitLab