X-Git-Url: http://git.openwrt.org//?a=blobdiff_plain;f=CMakeLists.txt;h=1f35d2602669e237cdc34b1224d3ef1ce9b0d122;hb=c99182e96d2b66bab77d9eb9584ca7e0211966aa;hp=74cb080582a1c496c50b0b96677a634313875f8b;hpb=b077337e6f213975a66e89d61b702aae48314885;p=project%2Fnetifd.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 74cb080..1f35d26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,24 +5,20 @@ ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -Wmissing-declarations) 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 system.c tunnel.c + main.c utils.c system.c tunnel.c handler.c interface.c interface-ip.c interface-event.c - proto.c proto-static.c proto-shell.c + iprule.c proto.c proto-static.c proto-shell.c config.c device.c bridge.c vlan.c alias.c - ubus.c) + macvlan.c ubus.c vlandev.c wireless.c) SET(LIBS - ubox ubus uci json blobmsg_json) + ubox ubus uci json-c blobmsg_json) IF (NOT DEFINED LIBNL_LIBS) - SET(LIBNL_LIBS -lnl) + FIND_LIBRARY(libnl NAMES libnl-3 libnl nl-3 nl) + SET(LIBNL_LIBS ${libnl}) ENDIF() IF("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" AND NOT DUMMY_MODE)