Recursive include cmake file systemn home, project
[staging/xdg-launcher.git] / cmake / common.cmake
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Fulup Ar Foll <fulup@iot.bzh>
5 # contrib: Romain Forlot <romain.forlot@iot.bzh>
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 ###########################################################################
19
20
21 #--------------------------------------------------------------------------
22 #  WARNING:
23 #     Do not change this cmake template
24 #     Customise your preferences in "./etc/config.cmake"
25 #--------------------------------------------------------------------------
26
27 file(GLOB project_cmakefiles ${PROJECT_APP_TEMPLATES_DIR}/cmake/cmake.d/[0-9][0-9]-*.cmake)
28 list(SORT project_cmakefiles)
29 file(GLOB home_cmakefiles $ENV{HOME}/.config/cmake.d/[0-9][0-9]-*.cmake)
30 list(SORT home_cmakefiles)
31 file(GLOB system_cmakefiles /etc/cmake.d/[0-9][0-9]-*.cmake)
32 list(SORT system_cmakefiles)
33
34 foreach(file ${system_cmakefiles} ${home_cmakefiles} ${project_cmakefiles})
35         message(STATUS "Include: ${file}")
36         include(${file})
37 endforeach()
38
39 macro(project_build)
40         set (ARGSLIST ${ARGN})
41         list(LENGTH ARGSLIST ARGSNUM)
42         if(${ARGSNUM} GREATER 0)
43                 set(pattern "${ARGV0}")
44         else()
45                 set(pattern "*")
46         endif()
47
48         project_subdirs_add(${pattern})
49         project_targets_populate()
50         project_package_build()
51         project_closing_msg()
52 endmacro(project_build)