X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=CMakeLists.txt;h=2492e13d59ada2fac6dd616b2d5d7fce447c6124;hp=11044cb63b519236fcd0cc2641d7f99d91434510;hb=8309c75828acbcee73b11d9ce90d76b7ef14b891;hpb=875619ed4ee6bc0d19b0057c9ee60db3b258624a diff --git a/CMakeLists.txt b/CMakeLists.txt index 11044cb..2492e13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,22 +1,37 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.6) PROJECT(ubus C) -ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) +ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations) -ADD_LIBRARY(ubus SHARED libubus.c) +OPTION(BUILD_LUA "build Lua plugin" ON) +OPTION(BUILD_EXAMPLES "build examples" ON) +OPTION(ENABLE_SYSTEMD "systemd support" ON) + +SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") +SET(UBUS_UNIX_SOCKET "/var/run/ubus.sock") +SET(UBUS_MAX_MSGLEN 1048576) + +ADD_DEFINITIONS( -DUBUS_UNIX_SOCKET="${UBUS_UNIX_SOCKET}") +ADD_DEFINITIONS( -DUBUS_MAX_MSGLEN=${UBUS_MAX_MSGLEN}) + +IF(APPLE) + INCLUDE_DIRECTORIES(/opt/local/include) + LINK_DIRECTORIES(/opt/local/lib) +ENDIF() + +ADD_LIBRARY(ubus SHARED libubus.c libubus-io.c libubus-obj.c libubus-sub.c libubus-req.c libubus-acl.c) TARGET_LINK_LIBRARIES(ubus ubox) -ADD_EXECUTABLE(ubusd ubusd.c ubusd_id.c ubusd_obj.c ubusd_proto.c) -TARGET_LINK_LIBRARIES(ubusd ubox) +ADD_EXECUTABLE(ubusd ubusd.c ubusd_id.c ubusd_obj.c ubusd_proto.c ubusd_event.c ubusd_acl.c) +TARGET_LINK_LIBRARIES(ubusd ubox blobmsg_json ${json}) +find_library(json NAMES json-c json) 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(listener listener.c) -TARGET_LINK_LIBRARIES(listener ubus ubox) - -SET(CMAKE_INSTALL_PREFIX /usr) +ADD_SUBDIRECTORY(lua) +ADD_SUBDIRECTORY(examples) INSTALL(TARGETS ubus cli LIBRARY DESTINATION lib @@ -25,3 +40,17 @@ INSTALL(TARGETS ubus cli INSTALL(TARGETS ubusd RUNTIME DESTINATION sbin ) + +INSTALL(FILES ubusmsg.h ubus_common.h libubus.h DESTINATION include) + +# FIXME: this works but certainly can be done better: +SET(UBUSD_BINARY "${CMAKE_INSTALL_PREFIX}/sbin/ubusd") + +# do this after the installs so we have the proper paths +IF(ENABLE_SYSTEMD) + INCLUDE(FindPkgConfig) + PKG_CHECK_MODULES(SYSTEMD systemd) + IF(SYSTEMD_FOUND) + ADD_SUBDIRECTORY(systemd) + ENDIF() +ENDIF()