X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=d54b6fa9fd5c16db4c04068ff98c55ed22417f21;hp=2076fc93eb4a8e5b7219b3a3224c1eb6be00281f;hb=a03216660797173fbe67866f75564e3fec9c1e8d;hpb=35d767f41931df99533fccd0fbf3aa844d869139 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2076fc9..d54b6fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,25 +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 - config.c device.c bridge.c vlan.c alias.c - ubus.c) + iprule.c proto.c proto-static.c proto-shell.c + config.c device.c bridge.c veth.c vlan.c alias.c + macvlan.c ubus.c vlandev.c wireless.c) -find_library(json NAMES json-c json) 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)