X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=CMakeLists.txt;h=ca201dcc0f6aaac893a229bb18f8f21c511bb899;hp=4ef4dfaa75045db305c79aeb56dcb615a7bc609f;hb=587655b45085fcfc9c575792640c21c6ffb24f42;hpb=4bf10a76e01d2f2971a86765722a4c4a65b584a7 diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ef4dfa..ca201dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,16 +13,18 @@ ENDIF() SET(SOURCES main.c utils.c system.c tunnel.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) +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) @@ -35,6 +37,9 @@ ENDIF() IF(DEBUG) ADD_DEFINITIONS(-DDEBUG -g3) + IF(NO_OPTIMIZE) + ADD_DEFINITIONS(-O0) + ENDIF() ENDIF()