From: Florian Fainelli Date: Fri, 1 Jul 2016 23:04:51 +0000 (-0700) Subject: cmake: Find libubox/ustream.h header file X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fustream-ssl.git;a=commitdiff_plain;h=ec80adaa1b47f28d426fa19c692011ce60b992d6 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 --- 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})