From: Florian Fainelli Date: Wed, 31 May 2017 21:00:34 +0000 (-0700) Subject: upgraded: cmake: Find and include uloop.h X-Git-Url: http://git.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=8fd57dd387d30d2e31731fc921e8997bb6f2f5e6 upgraded: cmake: Find and include uloop.h Add a CMake FIND_PATH and INCLUDE_DIRECTORIES searching for libubox/uloop.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/upgraded/CMakeLists.txt b/upgraded/CMakeLists.txt index 093dba2..dd3f743 100644 --- a/upgraded/CMakeLists.txt +++ b/upgraded/CMakeLists.txt @@ -1,6 +1,8 @@ cmake_minimum_required(VERSION 2.6) PROJECT(upgraded C) +FIND_PATH(ubox_include_dir libubox/uloop.h) +INCLUDE_DIRECTORIES(${ubox_include_dir}) ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations) set(CMAKE_EXE_LINKER_FLAGS "-static -fPIC") set(CMAKE_FIND_LIBRARY_SUFFIXES .a)