diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-07-21 10:51:49 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-07-21 15:07:28 +0200 |
commit | db6a07f636a3f2a381dfcc0f52b16f59127496f0 (patch) | |
tree | cf7dee6c598477d9e7489fc1cff652b7935a3a7f | |
parent | 69290dbc1901c26c9c2d2a406c60b05b5c60af52 (diff) |
Project cmake file have precedence on home & sys
Change-Id: Ied2c6e3c7f378b27a84229999b84dfc649a4e657
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | cmake/common.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
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() |