From 25b8532b24181222da0a06f3209d1bfc8107e8db Mon Sep 17 00:00:00 2001 From: Marc Vef Date: Mon, 12 Jun 2023 18:43:47 +0200 Subject: [PATCH] Fix lohmann_json CMake download bug --- CHANGELOG.md | 4 +++- tests/integration/harness/CMakeLists.txt | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1ca56e57..d9d31614c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,7 +69,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Fixed an issue where compilation of syscall_intercept would fail for newer kernels using the `clone3()` system call ([!157](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/157) - Updated code formatter to support the most recent clang-format-15 - version ([!162](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/162)). + version ([!162](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/162)) +- Fixed an issue where nlohmann json failed to download in + CMake ([!167](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/167)). ## [0.9.1] - 2022-04-29 diff --git a/tests/integration/harness/CMakeLists.txt b/tests/integration/harness/CMakeLists.txt index 1f052222e..442f6a703 100644 --- a/tests/integration/harness/CMakeLists.txt +++ b/tests/integration/harness/CMakeLists.txt @@ -75,8 +75,8 @@ include(FetchContent) set(FETCHCONTENT_QUIET OFF) FetchContent_Declare(nlohmann_json - URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz - DOWNLOAD_EXTRACT_TIMESTAMP ON) + DOWNLOAD_EXTRACT_TIMESTAMP ON + URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz) FetchContent_GetProperties(nlohmann_json) -- GitLab