Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-03-27 01:50:33 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-03-27 01:50:33 +0300
commita7c9ae6d6ac39d17670a2e881e296f7973f0fe77 (patch)
tree6c9197a139230edde307ca184826892f48d56564 /CMakeLists.txt
parentf213e8b43233fbafbf9531d6dcefc956eb9f84b5 (diff)
support building without json support
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt14
1 files changed, 10 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8ef71b2..9e8f093 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,9 +11,6 @@ ENDIF()
SET(SOURCES avl.c blob.c blobmsg.c uloop.c usock.c)
ADD_LIBRARY(ubox SHARED ${SOURCES})
-ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c)
-
-TARGET_LINK_LIBRARIES(blobmsg_json ubox json)
SET(CMAKE_INSTALL_PREFIX /usr)
@@ -21,6 +18,15 @@ FILE(GLOB headers *.h)
INSTALL(FILES ${headers}
DESTINATION include/libubox
)
-INSTALL(TARGETS ubox blobmsg_json
+INSTALL(TARGETS ubox
LIBRARY DESTINATION lib
)
+
+find_library(json json)
+IF(EXISTS ${json})
+ ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c)
+ TARGET_LINK_LIBRARIES(blobmsg_json ubox json)
+ INSTALL(TARGETS blobmsg_json
+ LIBRARY DESTINATION lib
+ )
+ENDIF()