From: Romain Forlot Date: Thu, 4 May 2017 18:03:34 +0000 (+0200) Subject: Use optional pattern argument to search under subdirs X-Git-Tag: 3.99.1~31 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=453eaf61f02b19b7fa5ac3f71243ca9d5ee63317;p=staging%2Fxdg-launcher.git Use optional pattern argument to search under subdirs Change-Id: Ic24dee22f0e8353cc7bc9fb6a4698d4d7d762412 Signed-off-by: Romain Forlot --- diff --git a/reference/etc/macros.cmake b/reference/etc/macros.cmake index 046be7a..a002d95 100644 --- a/reference/etc/macros.cmake +++ b/reference/etc/macros.cmake @@ -112,7 +112,12 @@ macro(project_package_build) endmacro(project_package_build) macro(project_subdirs_add) - file(GLOB filelist "*") + if(${ARGV0}) + file(GLOB filelist "${ARGV0}") + else() + file(GLOB filelist "*") + endif(${ARGV0}) + foreach(filename ${filelist}) if(EXISTS "${filename}/CMakeLists.txt") add_subdirectory(${filename})