X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=d20b4906ebb42cc330e2a60b6e8f087272ed0661;hp=6da39df2baf88402ebb7bc0d089f6f7dcda1e48e;hb=8625bb7339d437ac3b827fa5c8dcc7b69bcf1e1b;hpb=25cb39d2bcf72442c7d793a71b5a3950f701e302 diff --git a/CMakeLists.txt b/CMakeLists.txt index 6da39df..d20b490 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,15 +10,36 @@ IF(APPLE) LINK_DIRECTORIES(/opt/local/lib) ENDIF() +SET(SOURCES + main.c utils.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} ${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 --std=gnu99 -g3) ENDIF() -ADD_EXECUTABLE(netifd - 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 - system-dummy.c) +ADD_EXECUTABLE(netifd ${SOURCES}) + +TARGET_LINK_LIBRARIES(netifd ${LIBS}) -TARGET_LINK_LIBRARIES(netifd ubox ubus uci json blobmsg_json) +INSTALL(TARGETS netifd + RUNTIME DESTINATION sbin +)