From 6a85d43c6784494e22019fb6dbb089e6405660d7 Mon Sep 17 00:00:00 2001 From: Sucan126 <632190820@qq.com> Date: Mon, 8 Sep 2025 18:51:58 +0800 Subject: [PATCH] Remove nlohmann_json library from CMakeLists.txt. This change simplifies the linking process by eliminating the dependency on the nlohmann JSON library, which is no longer required for the project. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dc8028c..19d197d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,6 @@ add_executable(main ${SOURCES}) # Link libraries target_link_libraries(main unitree_sdk2 - nlohmann_json::nlohmann_json Threads::Threads )