X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=CMakeLists.txt;h=b791c7ca1a8335377c9d88004f9d49a8f97c3e8c;hp=3114aa9c111553f328475eef1af4a08373dda47f;hb=a93b044d6a5a4bed51d776cb0950e7d20fb17b84;hpb=dbd4c2f121be08e514828f2533687b145a6e16dd diff --git a/CMakeLists.txt b/CMakeLists.txt index 3114aa9..b791c7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,15 +2,33 @@ cmake_minimum_required(VERSION 2.8) PROJECT(ubus C) ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) -ADD_LIBRARY(ubus STATIC libubus.c) -ADD_EXECUTABLE(ubusd ubusd.c ubusd_id.c ubusd_obj.c ubusd_proto.c) +IF(APPLE) + INCLUDE_DIRECTORIES(/opt/local/include) + LINK_DIRECTORIES(/opt/local/lib) +ENDIF() + +ADD_LIBRARY(ubus SHARED libubus.c) +TARGET_LINK_LIBRARIES(ubus ubox) + +ADD_EXECUTABLE(ubusd ubusd.c ubusd_id.c ubusd_obj.c ubusd_proto.c ubusd_event.c) TARGET_LINK_LIBRARIES(ubusd ubox) ADD_EXECUTABLE(cli cli.c) SET_TARGET_PROPERTIES(cli PROPERTIES OUTPUT_NAME ubus) -TARGET_LINK_LIBRARIES(cli ubus ubox) +TARGET_LINK_LIBRARIES(cli ubus ubox blobmsg_json json) + +ADD_EXECUTABLE(ubus-example ubus-example.c) +TARGET_LINK_LIBRARIES(ubus-example ubus ubox) + +SET(CMAKE_INSTALL_PREFIX /usr) -ADD_EXECUTABLE(listener listener.c) -TARGET_LINK_LIBRARIES(listener ubus ubox) +INSTALL(TARGETS ubus cli + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin +) +INSTALL(TARGETS ubusd + RUNTIME DESTINATION sbin +) +INSTALL(FILES ubusmsg.h ubus_common.h libubus.h DESTINATION include)