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-02-06 18:14:15 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-02-06 18:14:15 +0300
commit7e9712363b23faf80ba207793fcbcc94bc4bd053 (patch)
tree471c3e995ed7af75de7470322ed2d817e4ea7094 /CMakeLists.txt
parentbf87f247d8cf83a88626e9bf4edfb8711c115a2c (diff)
add a json to blobmsg parsing library
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f5ba86b..ae4ff17 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,9 +3,17 @@ cmake_minimum_required(VERSION 2.8)
PROJECT(ubox C)
ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3)
+IF(APPLE)
+ INCLUDE_DIRECTORIES(/opt/local/include)
+ LINK_DIRECTORIES(/opt/local/lib)
+ENDIF()
+
SET(SOURCES avl.c blob.c blobmsg.c hash.c uhtbl.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)
@@ -13,6 +21,6 @@ FILE(GLOB headers *.h)
INSTALL(FILES ${headers}
DESTINATION include/libubox
)
-INSTALL(TARGETS ubox
+INSTALL(TARGETS ubox blobmsg_json
LIBRARY DESTINATION lib
)