From 174282dccb47b17ec509c556aea35701bd6ac713 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Tue, 15 Oct 2024 14:02:46 -0400 Subject: [PATCH] cmake: Set minimum version for nlohmann_json to 3.11 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd90e9a2..63424828 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ endif() find_package(Qt6 REQUIRED Core Widgets Svg Network) # Find nlohmann JSON -find_package(nlohmann_json 3 REQUIRED) +find_package(nlohmann_json 3.11 REQUIRED) # Find qrcodegencpp set(CMAKE_FIND_PACKAGE_PREFER_CONFIG ON)