From 8fd57dd387d30d2e31731fc921e8997bb6f2f5e6 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 31 May 2017 14:00:34 -0700 Subject: [PATCH] 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 --- upgraded/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.30.2