X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=5b847ec466d7ce2070dab9e7134cf941c0e155ed;hp=496e9d5fe5b046b01c8d631db7e252929826053e;hb=aab5615166efb78d793eccd1a5d5ac7aab6324f5;hpb=d5202486636818e3ff48ede9d3e06c886c659c0a diff --git a/CMakeLists.txt b/CMakeLists.txt index 496e9d5..5b847ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,36 @@ cmake_minimum_required(VERSION 2.6) PROJECT(netifd C) -ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) +ADD_DEFINITIONS(-Os -Wall -Werror) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") +IF(APPLE) + INCLUDE_DIRECTORIES(/opt/local/include) + LINK_DIRECTORIES(/opt/local/lib) +ENDIF() + +SET(SOURCES + main.c utils.c interface.c interface-ip.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("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" AND NOT DUMMY_MODE) + SET(SOURCES ${SOURCES} system-linux.c) + SET(LIBS ${LIBS} nl) +ELSE() + ADD_DEFINITIONS(-DDUMMY_MODE=1) + SET(SOURCES ${SOURCES} system-dummy.c) +ENDIF() + IF(DEBUG) - ADD_DEFINITIONS(-DDEBUG -O0) + ADD_DEFINITIONS(-DDEBUG -O0 --std=gnu99 -g3) ENDIF() -ADD_EXECUTABLE(netifd main.c interface.c proto.c config.c device.c bridge.c vlan.c ubus.c system-dummy.c) -TARGET_LINK_LIBRARIES(netifd ubox ubus uci) + +ADD_EXECUTABLE(netifd ${SOURCES}) + +TARGET_LINK_LIBRARIES(netifd ${LIBS})