From be8f32edac81aa4d5c24c1cfa109c23c48827997 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 9 Oct 2011 18:57:42 +0200 Subject: [PATCH 1/1] add a variable for overriding the libnl linker command --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 461c07c..a6e228a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,9 +19,13 @@ SET(SOURCES 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} nl) + SET(LIBS ${LIBS} ${LIBNL_LIBS}) ELSE() ADD_DEFINITIONS(-DDUMMY_MODE=1) SET(SOURCES ${SOURCES} system-dummy.c) -- 2.11.0