X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=7a97aa6fd5803130850cca128a5efa9ddd0a0cb2;hp=5b847ec466d7ce2070dab9e7134cf941c0e155ed;hb=e64619267d7b4e5f5fec57718c0e11e7844dc9ee;hpb=aab5615166efb78d793eccd1a5d5ac7aab6324f5 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b847ec..7a97aa6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.6) PROJECT(netifd C) -ADD_DEFINITIONS(-Os -Wall -Werror) +ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -Wmissing-declarations) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") @@ -11,26 +11,35 @@ IF(APPLE) ENDIF() SET(SOURCES - main.c utils.c interface.c interface-ip.c + main.c utils.c system.c tunnel.c + interface.c interface-ip.c interface-event.c proto.c proto-static.c proto-shell.c config.c device.c bridge.c vlan.c ubus.c) SET(LIBS ubox ubus uci json blobmsg_json) +IF (NOT DEFINED LIBNL_LIBS) + SET(LIBNL_LIBS -lnl) +ENDIF() + IF("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" AND NOT DUMMY_MODE) SET(SOURCES ${SOURCES} system-linux.c) - SET(LIBS ${LIBS} nl) + SET(LIBS ${LIBS} ${LIBNL_LIBS}) ELSE() ADD_DEFINITIONS(-DDUMMY_MODE=1) SET(SOURCES ${SOURCES} system-dummy.c) ENDIF() IF(DEBUG) - ADD_DEFINITIONS(-DDEBUG -O0 --std=gnu99 -g3) + ADD_DEFINITIONS(-DDEBUG -g3) ENDIF() ADD_EXECUTABLE(netifd ${SOURCES}) TARGET_LINK_LIBRARIES(netifd ${LIBS}) + +INSTALL(TARGETS netifd + RUNTIME DESTINATION sbin +)