X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=CMakeLists.txt;h=7123096a0f936fdb265256fc1f47785f731e8b6e;hb=053be7df871e05478284235732f8b0608089512f;hp=b1fdd5b7a5dd4c54e15bb5278ed058ac2f840ff2;hpb=47d75dd84af8ba6e9bac0d24861653e11796bdb0;p=project%2Fubus.git diff --git a/CMakeLists.txt b/CMakeLists.txt index b1fdd5b..7123096 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,6 @@ ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations) 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") @@ -19,16 +18,28 @@ IF(APPLE) LINK_DIRECTORIES(/opt/local/lib) ENDIF() +IF(BUILD_STATIC) + FIND_LIBRARY(ubox_library NAMES ubox.a) + FIND_LIBRARY(blob_library NAMES blobmsg_json.a) +ELSE(BUILD_STATIC) + FIND_LIBRARY(ubox_library NAMES ubox) + FIND_LIBRARY(blob_library NAMES blobmsg_json) +ENDIF(BUILD_STATIC) + +FIND_PATH(ubox_include_dir libubox/usock.h) +INCLUDE_DIRECTORIES(${ubox_include_dir}) + 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) +TARGET_LINK_LIBRARIES(ubus ${ubox_library}) + +find_library(json NAMES json-c json) ADD_EXECUTABLE(ubusd ubusd.c ubusd_id.c ubusd_obj.c ubusd_proto.c ubusd_event.c ubusd_acl.c ubusd_monitor.c) -TARGET_LINK_LIBRARIES(ubusd ubox blobmsg_json ${json}) +TARGET_LINK_LIBRARIES(ubusd ${ubox_library} ${blob_library} ${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 blobmsg_json ${json}) +TARGET_LINK_LIBRARIES(cli ubus ${ubox_library} ${blob_library} ${json}) ADD_SUBDIRECTORY(lua) ADD_SUBDIRECTORY(examples) @@ -42,15 +53,3 @@ INSTALL(TARGETS ubusd ) 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()