From: Romain Forlot Date: Tue, 27 Jun 2017 13:02:05 +0000 (+0200) Subject: Correct precedence over included files X-Git-Tag: dab_3.99.3~52 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=b62e98e11c34acd9f8de99cbeaea2723d3e078f3;p=staging%2Fxdg-launcher.git Correct precedence over included files Change-Id: Ifc6f2bf72ea5bc9f497745cc65041f047e8b86bd Signed-off-by: Romain Forlot --- diff --git a/cmake/common.cmake b/cmake/common.cmake index a98cac9..eb123f1 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -31,7 +31,7 @@ list(SORT home_cmakefiles) file(GLOB system_cmakefiles /etc/cmake.d/[0-9][0-9]-*.cmake) list(SORT system_cmakefiles) -foreach(file ${system_cmakefiles} ${home_cmakefiles} ${project_cmakefiles}) +foreach(file ${project_cmakefiles} ${home_cmakefiles} ${system_cmakefiles}) message(STATUS "Include: ${file}") include(${file}) endforeach()