diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-27 15:02:05 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | a049d9e5d8ecf76b486e8dedb1a8202be992b418 (patch) | |
tree | 622d0a842e7c15b3de139a05e742c440b977c4fa | |
parent | 6f5e52bece7301f4467621756813d8df517db841 (diff) |
Correct precedence over included files
Change-Id: Ifc6f2bf72ea5bc9f497745cc65041f047e8b86bd
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 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() |