From: Florian Fainelli Date: Fri, 1 Jul 2016 23:06:41 +0000 (-0700) Subject: cmake: Find libubox/ulog.h X-Git-Url: http://git.openwrt.org/?p=project%2Ffstools.git;a=commitdiff_plain;h=eaaaf75a225fcdebb8914d5b4a046c88d2b3a105 cmake: Find libubox/ulog.h Add a CMake FIND_PATH and INCLUDE_DIRECTORIES searching for libubox/ulog.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 a6002e5..9a5a583 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,9 @@ ADD_LIBRARY(ubi-utils STATIC libubi/ubiutils-common.c) INSTALL(TARGETS ubi-utils ARCHIVE DESTINATION lib) +FIND_PATH(ubox_include_dir libubox/ulog.h) +INCLUDE_DIRECTORIES(${ubox_include_dir}) + SET_TARGET_PROPERTIES(ubi-utils PROPERTIES COMPILE_FLAGS "-ffunction-sections -fdata-sections")