From 6a6e9d22b338bb2c290b7c7fd0ae434ad13232d9 Mon Sep 17 00:00:00 2001 From: Paul Elder Date: Tue, 26 Jun 2018 23:22:25 +0900 Subject: lib: Compile custom glob() implementation for Android The Android C library doesn't provide the glob() function which we use in the configfs code. Add conditional compilation to cmake such that a local copy of glob is automatically compiled if glob isn't provided. Signed-off-by: Paul Elder Signed-off-by: Laurent Pinchart --- lib/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/CMakeLists.txt') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index ca08fd7..eacfb9c 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -1,6 +1,8 @@ file(GLOB SOURCES "*.c" "*.h") file(GLOB HEADERS "../include/uvcgadget/*.h") +add_subdirectory(compat) + add_library(uvcgadget ${SOURCES}) set_target_properties(uvcgadget PROPERTIES PUBLIC_HEADER "${HEADERS}") -- cgit v1.2.3