[PATCH mdnsd 01/10] cmake: fix include dirs and libs lookup

Petr Štetiar ynezz at true.cz
Tue Oct 13 09:36:12 EDT 2020


In order to make it compile properly in more environments.

Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 CMakeLists.txt | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a52e5bd015be..8be878dd2cd8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,16 @@ SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
 
 SET(SOURCES main.c dns.c announce.c cache.c service.c util.c ubus.c interface.c)
 
-SET(LIBS ubox ubus resolv blobmsg_json json-c)
+FIND_PATH(ubox_include_dir NAMES libubox/usock.h)
+FIND_PATH(ubus_include_dir NAMES libubus.h)
+INCLUDE_DIRECTORIES(${ubox_include_dir} ${ubus_include_dir})
+
+FIND_LIBRARY(ubox NAMES ubox)
+FIND_LIBRARY(ubus NAMES ubus)
+FIND_LIBRARY(blobmsg_json NAMES blobmsg_json)
+FIND_LIBRARY(json NAMES json json-c)
+
+SET(LIBS ${ubox} ${ubus} ${blobmsg_json} ${json} resolv)
 
 IF(DEBUG)
   ADD_DEFINITIONS(-DDEBUG -g3)



More information about the openwrt-devel mailing list