From 9a3519536b7497a1423fbfa7e8981212a30f1793 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 10 Feb 2013 15:32:45 +0100 Subject: [PATCH] blobmsg_json: prefer to link against libjson-c over libjson (the new library name in git versions of json-c) Signed-off-by: Felix Fietkau --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bcec18..ba7ccaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,13 +35,13 @@ INSTALL(TARGETS ubox ADD_SUBDIRECTORY(lua) -find_library(json json) +find_library(json NAMES json-c json) IF(EXISTS ${json}) ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c) - TARGET_LINK_LIBRARIES(blobmsg_json ubox json) + TARGET_LINK_LIBRARIES(blobmsg_json ubox ${json}) ADD_EXECUTABLE(jshn jshn.c) - TARGET_LINK_LIBRARIES(jshn json) + TARGET_LINK_LIBRARIES(jshn ${json}) INSTALL(TARGETS blobmsg_json jshn LIBRARY DESTINATION lib -- 2.30.2