From 75005cdae0ec74709ee710337f3683a3cec34c2b Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 25 Dec 2019 21:40:48 +0100 Subject: [PATCH] Drop version requirement for jsoncpp. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e1ac829..f01338e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,8 @@ include(GNUInstallDirs) # The minimum versions should be in Debian oldstable, if possible. -find_package(Boost 1.62 REQUIRED COMPONENTS system filesystem log) -find_package(jsoncpp 1.7 REQUIRED CONFIG) +find_package(Boost 1.62 REQUIRED COMPONENTS filesystem log) +find_package(jsoncpp REQUIRED CONFIG) # 1.7.4 (Debian buster) has no version. find_package(CURL 7.52 REQUIRED) find_package(Threads REQUIRED) find_package(restclient-cpp 0.5 REQUIRED CONFIG)