X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=CMakeLists.txt;h=ba7ccaa9d24c5e3d4e68624536d398f92bd89baa;hp=4b6defcbcdaf6b734cfc832ca6af0dc6b5309775;hb=4ab499899ce2ed884a1235ada501c39e355911e7;hpb=08a4bf2a299de28b46f59fc3fa2661e5632c2967 diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b6defc..ba7ccaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,18 +1,29 @@ cmake_minimum_required(VERSION 2.6) +INCLUDE(CheckLibraryExists) +INCLUDE(CheckFunctionExists) PROJECT(ubox C) -ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) +ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations) + +OPTION(BUILD_LUA "build Lua plugin" ON) IF(APPLE) INCLUDE_DIRECTORIES(/opt/local/include) LINK_DIRECTORIES(/opt/local/lib) ENDIF() -SET(SOURCES avl.c avl-cmp.c blob.c blobmsg.c uloop.c usock.c) +SET(SOURCES avl.c avl-cmp.c blob.c blobmsg.c uloop.c usock.c ustream.c ustream-fd.c vlist.c utils.c) ADD_LIBRARY(ubox SHARED ${SOURCES}) -SET(CMAKE_INSTALL_PREFIX /usr) +SET(LIBS) +CHECK_FUNCTION_EXISTS(clock_gettime HAVE_GETTIME) +IF(NOT HAVE_GETTIME) + CHECK_LIBRARY_EXISTS(rt clock_gettime "" NEED_GETTIME) + IF(NEED_GETTIME) + TARGET_LINK_LIBRARIES(ubox rt) + ENDIF() +ENDIF() FILE(GLOB headers *.h) INSTALL(FILES ${headers} @@ -22,13 +33,15 @@ INSTALL(TARGETS ubox LIBRARY DESTINATION lib ) -find_library(json json) +ADD_SUBDIRECTORY(lua) + +find_library(json NAMES json-c json) IF(EXISTS ${json}) ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c) - TARGET_LINK_LIBRARIES(blobmsg_json ubox json) + TARGET_LINK_LIBRARIES(blobmsg_json ubox ${json}) ADD_EXECUTABLE(jshn jshn.c) - TARGET_LINK_LIBRARIES(jshn json) + TARGET_LINK_LIBRARIES(jshn ${json}) INSTALL(TARGETS blobmsg_json jshn LIBRARY DESTINATION lib