X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=cmake%2Fcommon.cmake;h=6465aafd15032bddf5dc65c4803c1dcbf021e8c0;hb=b9f1f36e653dd2e5a660421b235d8c5be1c34963;hp=eb123f1bb10e1d815fe9cb1827bd39444ea404d0;hpb=b62e98e11c34acd9f8de99cbeaea2723d3e078f3;p=apps%2Fapp-templates.git diff --git a/cmake/common.cmake b/cmake/common.cmake index eb123f1..6465aaf 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -36,17 +36,12 @@ foreach(file ${project_cmakefiles} ${home_cmakefiles} ${system_cmakefiles}) include(${file}) endforeach() -macro(project_build) - set (ARGSLIST ${ARGN}) - list(LENGTH ARGSLIST ARGSNUM) - if(${ARGSNUM} GREATER 0) - set(pattern "${ARGV0}") - else() - set(pattern "*") - endif() +if(DEFINED PROJECT_SRC_DIR_PATTERN) + project_subdirs_add(${PROJECT_SRC_DIR_PATTERN}) +else() + project_subdirs_add() +endif(DEFINED PROJECT_SRC_DIR_PATTERN) - project_subdirs_add(${pattern}) - project_targets_populate() - project_package_build() - project_closing_msg() -endmacro(project_build) \ No newline at end of file +project_targets_populate() +project_package_build() +project_closing_msg() \ No newline at end of file