From 1dda9e3c180a2ab6ddfa433b36e1c926ca69024f Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Mon, 11 Mar 2024 15:01:43 -0400 Subject: [PATCH] Remove JSON dependency Signed-off-by: Wirlaburla --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fb2cd74..eb823bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,5 @@ SET(CMAKE_CXX_STANDARD 17) SET(CMAKE_CXX_STANDARD_REQUIRED True) SET(CMAKE_CXX_FLAGS "-O3") find_package(CURL REQUIRED) -find_package(nlohmann_json 3.2.0 REQUIRED) add_subdirectory(src) install(TARGETS p3ng0 RUNTIME DESTINATION bin)