diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-23 17:14:45 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | 0cb7407e26d3c91008aff7ae19e9d8bd38ff8440 (patch) | |
tree | c583bab711e14ee7d124ba271a997bd0171ee0d3 /cmake | |
parent | ceaac96060b51a87f40dcad5ae652ad393815a88 (diff) |
OS detection to fallback instead of addition
Instead of include a default cmake file in addition of the
others, use it as fallback if any other cmake file doesn't
match
Change-Id: Ib46e0e64a5f485dcad4e41f092936484da83b7f4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/common.cmake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake index 1a7a2f0..5e107ac 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -36,8 +36,12 @@ foreach(file ${system_cmakefiles} ${home_cmakefiles} ${project_cmakefiles}) include(${file}) endforeach() -file(GLOB project_cmakefiles ${ENTRY_POINT}/cmake/[0-9][0-9]-common*.cmake ${ENTRY_POINT}/cmake/[0-9][0-9]-${OSRELEASE}*.cmake ) +file(GLOB project_cmakefiles ${ENTRY_POINT}/cmake/[0-9][0-9]-${OSRELEASE}*.cmake ) list(SORT project_cmakefiles) +if(NOT ${project_cmakefiles}) + file(GLOB project_cmakefiles ${ENTRY_POINT}/cmake/[0-9][0-9]-default*.cmake) +endif() + foreach(file ${project_cmakefiles}) message(STATUS "Include: ${file}") include(${file}) |