From 0335e2c37ff06ac9b6d0fbe9f6e4a99b32db5b25 Mon Sep 17 00:00:00 2001 From: StephenCzarnecki Date: Tue, 29 Oct 2024 16:12:57 -0400 Subject: [PATCH] Updating targeted version of nlohmann_json to latest release: 3.11.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b2598c..6bc098a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ if(NOT TARGET nlohmann_json) FetchContent_Declare( nlohmann_json GIT_REPOSITORY https://github.com/nlohmann/json.git - GIT_TAG "db53bda" + GIT_TAG "v3.11.3" ) FetchContent_MakeAvailable(nlohmann_json)