X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=CMakeLists.txt;h=e5bf46b5000e084989148754f149a6b83faaa251;hb=c9e852301ba4059da47418fcaede22d6fa4603e9;hp=cc473c401e85a499fcbd8b1d5941f5cad3722d3c;hpb=d1c5aa705a0c66bc4c713eff70563011ba5c5673;p=project%2Flibubox.git diff --git a/CMakeLists.txt b/CMakeLists.txt index cc473c4..e5bf46b 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) -SET(SOURCES avl.c blob.c blobmsg.c hash.c uhtbl.c uloop.c) +IF(APPLE) + INCLUDE_DIRECTORIES(/opt/local/include) + LINK_DIRECTORIES(/opt/local/lib) +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) @@ -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 )