afm-unit.conf: Refactor its generation
[src/app-framework-main.git] / conf / unit / CMakeLists.txt
1 ###########################################################################
2 # Copyright (C) 2015-2019 IoT.bzh
3 #
4 # author: José Bollo <jose.bollo@iot.bzh>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19 cmake_minimum_required(VERSION 2.8)
20
21 find_program(M4EXEC m4)
22 mark_as_advanced(M4EXEC)
23
24 file(GLOB in_afm_unit_list
25         LIST_DIRECTORIES false
26         RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
27         CONFIGURE_DEPENDS
28         afm-unit *.inc
29 )
30 foreach(f IN LISTS in_afm_unit_list)
31         configure_file(${f} ${f})
32         set_property(SOURCE ${CMAKE_CURRENT_BINARY_DIR}/afm-unit.conf APPEND PROPERTY OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${f})
33 endforeach(f)
34 if(AGL_DEVEL)
35         set(optm4 -DAGL_DEVEL)
36 endif()
37 add_custom_command(
38         OUTPUT afm-unit.conf
39         COMMAND ${M4EXEC} ${optm4} -I. afm-unit > afm-unit.conf
40         WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
41 )
42 add_custom_target(unitconf ALL DEPENDS afm-unit.conf)
43
44 if(NOT USE_SDK)
45         install(DIRECTORY DESTINATION ${afm_confdir}/unit.env.d)
46         install(DIRECTORY DESTINATION ${afm_confdir}/widget.env.d)
47         install(FILES ${CMAKE_CURRENT_BINARY_DIR}/afm-unit.conf DESTINATION ${afm_confdir})
48 endif()
49