Dirty fix to handle distro specific packages deps
[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 "./conf.d/cmake/config.cmake"
25 #--------------------------------------------------------------------------
26
27 # Get the os type
28 # Used to package .deb
29 set(OS_RELEASE_PATH "${BUILD_ENV_SYSROOT}/etc/os-release")
30 if(EXISTS ${OS_RELEASE_PATH})
31         execute_process(COMMAND bash "-c" "grep -E '^ID(_LIKE)?=' ${OS_RELEASE_PATH} | tail -n 1"
32                 OUTPUT_VARIABLE TMP_OSRELEASE
33         )
34
35         if (NOT TMP_OSRELEASE STREQUAL "")
36                 string(REGEX REPLACE ".*=\"?([0-9a-z\._-]*)\"?\n" "\\1" OSRELEASE ${TMP_OSRELEASE})
37         else()
38                 set(OSRELEASE "NOT COMPATIBLE !")
39         endif()
40
41 else()
42         set(OSRELEASE "NOT COMPATIBLE ! Missing ${OS_RELEASE_PATH} file.")
43 endif()
44 message(STATUS "Distribution used ${OSRELEASE}")
45
46 file(GLOB project_cmakefiles ${PROJECT_APP_TEMPLATES_DIR}/cmake/cmake.d/[0-9][0-9]-*.cmake)
47 file(GLOB distro_cmakefiles ${PROJECT_APP_TEMPLATES_DIR}/../cmake/[0-9][0-9]-${OSRELEASE}*.cmake ${PROJECT_APP_TEMPLATES_DIR}/../cmake/[0-9][0-9]-common*.cmake)
48 list(SORT distro_cmakefiles)
49 if(NOT distro_cmakefiles)
50         file(GLOB distro_cmakefiles ${PROJECT_APP_TEMPLATES_DIR}/../cmake/[0-9][0-9]-default*.cmake)
51 endif()
52
53 list(APPEND project_cmakefiles "${distro_cmakefiles}")
54 list(SORT project_cmakefiles)
55
56 file(GLOB home_cmakefiles $ENV{HOME}/.config/app-templates/cmake.d/[0-9][0-9]-common*.cmake $ENV{HOME}/.config/app-templates/cmake.d/[0-9][0-9]-${PROJECT_NAME}*.cmake)
57 list(SORT home_cmakefiles)
58 file(GLOB system_cmakefiles /etc/app-templates/cmake.d/[0-9][0-9]-common*.cmake /etc/app-templates/cmake.d/[0-9][0-9]-${PROJECT_NAME}*.cmake)
59 list(SORT system_cmakefiles)
60
61 foreach(file ${system_cmakefiles} ${home_cmakefiles} ${project_cmakefiles})
62         message(STATUS "Include: ${file}")
63         include(${file})
64 endforeach()
65
66 if(DEFINED PROJECT_SRC_DIR_PATTERN)
67         project_subdirs_add(${PROJECT_SRC_DIR_PATTERN})
68 else()
69         project_subdirs_add()
70 endif(DEFINED PROJECT_SRC_DIR_PATTERN)
71
72 configure_files_in_dir(${PROJECT_APP_TEMPLATES_DIR}/${ENTRY_POINT}/template.d)
73 configure_files_in_dir($ENV{HOME}/.config/app-templates/scripts)
74 configure_files_in_dir(/etc/app-templates/scripts)
75
76 project_targets_populate()
77 remote_targets_populate()
78 project_package_build()
79 project_closing_msg()