From db6a07f636a3f2a381dfcc0f52b16f59127496f0 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 21 Jul 2017 10:51:49 +0200 Subject: Project cmake file have precedence on home & sys Change-Id: Ied2c6e3c7f378b27a84229999b84dfc649a4e657 Signed-off-by: Romain Forlot --- cmake/common.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/common.cmake b/cmake/common.cmake index 19ee6eb..4e34fcd 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -31,7 +31,7 @@ list(SORT home_cmakefiles) file(GLOB system_cmakefiles /etc/app-templates/cmake.d/[0-9][0-9]-*.cmake) list(SORT system_cmakefiles) -foreach(file ${project_cmakefiles} ${home_cmakefiles} ${system_cmakefiles}) +foreach(file ${system_cmakefiles} ${home_cmakefiles} ${project_cmakefiles}) message(STATUS "Include: ${file}") include(${file}) endforeach() -- cgit 1.2.3-korg