X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=examples%2FCMakeLists.txt;h=2126d29842dfa045eaa865c2d3ac3e434e1a6ee2;hp=51b97dfc961f9134e3b2762221ecb88bafd0d800;hb=db8e7060e057d5794ed1604a45d5df75946d55cb;hpb=cb6c1718e711db77f7b6a06c8bc51fe392509bbc 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)