From ec80adaa1b47f28d426fa19c692011ce60b992d6 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Fri, 1 Jul 2016 16:04:51 -0700 Subject: [PATCH] cmake: Find libubox/ustream.h header file Add a CMake FIND_PATH and INCLUDE_DIRECTORIES searching for libubox/ustream-ssl.h. Some external toolchains which do not include standard locations would fail to find the header otherwise. Signed-off-by: Florian Fainelli --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ce9bf8..49e79a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,9 @@ ELSE() SET(SSL_LIB crypto ssl) ENDIF() +FIND_PATH(ubox_include_dir libubox/ustream.h) +INCLUDE_DIRECTORIES(${ubox_include_dir}) + ADD_LIBRARY(ustream-ssl SHARED ustream-ssl.c ${SSL_SRC}) TARGET_LINK_LIBRARIES(ustream-ssl ubox ${SSL_LIB}) -- 2.11.0