rpcd/CMakeLists.txt
Jo-Philipp Wich 3cac366777 Link json-c
2013-09-01 22:22:42 +02:00

23 lines
562 B
CMake

cmake_minimum_required(VERSION 2.6)
PROJECT(luci-rpcd C)
ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations)
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
IF(APPLE)
INCLUDE_DIRECTORIES(/opt/local/include)
LINK_DIRECTORIES(/opt/local/lib)
ENDIF()
ADD_EXECUTABLE(luci-rpcd main.c exec.c session.c file.c uci.c iwinfo.c luci2.c plugin.c)
FIND_LIBRARY(json NAMES json-c json)
TARGET_LINK_LIBRARIES(luci-rpcd ubox ubus uci iwinfo blobmsg_json ${json})
SET(CMAKE_INSTALL_PREFIX /usr)
INSTALL(TARGETS luci-rpcd
RUNTIME DESTINATION sbin
)