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.

This commit is contained in:
2025-09-08 18:51:58 +08:00
parent 7f43d729a2
commit 6a85d43c67

View File

@@ -39,7 +39,6 @@ add_executable(main ${SOURCES})
# Link libraries # Link libraries
target_link_libraries(main target_link_libraries(main
unitree_sdk2 unitree_sdk2
nlohmann_json::nlohmann_json
Threads::Threads Threads::Threads
) )