X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=e648b032c7dc118d50ea244b18bece3a7c8be2ed;hp=adb2c071432da9fc97a60d4855dc4a021ffb4ce2;hb=2d09cca0e90127d33eed43b8790f5778ba3b943f;hpb=1ba3b8a006b57646d55522bb9efa77769361ff39 diff --git a/CMakeLists.txt b/CMakeLists.txt index adb2c07..e648b03 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,16 +11,20 @@ IF(APPLE) ENDIF() SET(SOURCES - main.c utils.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 ubus.c) + iprule.c proto.c proto-static.c proto-shell.c + config.c device.c bridge.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} 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) @@ -33,6 +37,9 @@ ENDIF() IF(DEBUG) ADD_DEFINITIONS(-DDEBUG -g3) + IF(NO_OPTIMIZE) + ADD_DEFINITIONS(-O0) + ENDIF() ENDIF()