at 23.05-pre 57 lines 1.5 kB view raw
1From ea6901c9ed0f804bd2d6d09e514610518c2f4f09 Mon Sep 17 00:00:00 2001 2From: Lorenz Brun <lorenz@brun.one> 3Date: Fri, 18 Mar 2022 17:36:22 +0100 4Subject: [PATCH] Use normal jsoncpp 5 6--- 7 src/CMakeLists.txt | 6 +++--- 8 tester/CMakeLists.txt | 2 +- 9 2 files changed, 4 insertions(+), 4 deletions(-) 10 11diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 12index 5cd87fe9a..822b2151e 100644 13--- a/src/CMakeLists.txt 14+++ b/src/CMakeLists.txt 15@@ -34,7 +34,7 @@ if (ENABLE_FLEXIAPI) 16 if (XCODE) 17 list(APPEND LINK_LIBS jsoncpp_static) 18 else() 19- list(APPEND LINK_LIBS jsoncpp_object) 20+ list(APPEND LINK_LIBS jsoncpp) 21 endif() 22 endif() 23 24@@ -592,7 +592,7 @@ if(ENABLE_STATIC) 25 if (XCODE) 26 target_link_libraries(linphone PRIVATE jsoncpp_static) 27 else() 28- target_link_libraries(linphone PRIVATE jsoncpp_object) 29+ target_link_libraries(linphone PRIVATE jsoncpp) 30 endif() 31 endif() 32 33@@ -646,7 +646,7 @@ if(ENABLE_SHARED) 34 if (XCODE) 35 target_link_libraries(linphone PRIVATE jsoncpp_static) 36 else() 37- target_link_libraries(linphone PRIVATE jsoncpp_object) 38+ target_link_libraries(linphone PRIVATE jsoncpp) 39 endif() 40 endif() 41 42diff --git a/tester/CMakeLists.txt b/tester/CMakeLists.txt 43index b97042678..b4c5a5794 100644 44--- a/tester/CMakeLists.txt 45+++ b/tester/CMakeLists.txt 46@@ -34,7 +34,7 @@ if (ENABLE_FLEXIAPI) 47 if (XCODE) 48 list(APPEND OTHER_LIBS_FOR_TESTER jsoncpp_static) 49 else() 50- list(APPEND OTHER_LIBS_FOR_TESTER jsoncpp_object) 51+ list(APPEND OTHER_LIBS_FOR_TESTER jsoncpp) 52 endif() 53 endif() 54 55-- 562.25.1 57