diff --git a/CHANGELOG.md b/CHANGELOG.md index d1ca56e57e0c18093d5896ca0366cec55c4f8eb3..d9d31614c807f4cceedc0c34149af1384d8e392f 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 1f052222e59ab54132914abdf968c5080e77b8f8..442f6a703180bde6bb2f0279db75c8e132ee77da 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)