X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=CMakeLists.txt;h=b791c7ca1a8335377c9d88004f9d49a8f97c3e8c;hp=e579297ef9401c21e25af58b0b6beba1feb98019;hb=8c81142828a58e661d91da4f513a32ca5a9038bf;hpb=ea76fb270d40e11f3c4b02671babc47ffe836646 diff --git a/CMakeLists.txt b/CMakeLists.txt index e579297..b791c7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,16 +3,32 @@ cmake_minimum_required(VERSION 2.8) PROJECT(ubus C) ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) +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) +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)