From: Luka Perkov Date: Thu, 3 Jul 2014 10:28:22 +0000 (+0200) Subject: examples: fix linking with json-c X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=fd3a33b7ed6e5a6142d35a0ab91fb90f6bbcdc34;hp=b10cd1c0f6f1f1f9f5de66b89ce52a05ec6b5dca examples: fix linking with json-c Signed-off-by: Luka Perkov --- diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 51b97df..2126d29 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -11,8 +11,10 @@ ENDIF() INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..) LINK_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..) +FIND_LIBRARY(json NAMES json-c json) + ADD_EXECUTABLE(blobmsg-example blobmsg-example.c) -TARGET_LINK_LIBRARIES(blobmsg-example ubox blobmsg_json json) +TARGET_LINK_LIBRARIES(blobmsg-example ubox blobmsg_json ${json}) ADD_EXECUTABLE(ustream-example ustream-example.c) TARGET_LINK_LIBRARIES(ustream-example ubox)