Add policy table generated by ZIPC for EXAMPLE
[apps/agl-service-windowmanager-2017.git] / policy_manager / stm / zipc / CMakeLists.txt
1 #
2 # Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 set(TARGETS_STM pmstm)
18
19 set(ST_DIR     src/StateTransitionor)
20 set(ST_DIR_CMN src/Common)
21 set(ST_DIR_AL  ${ST_DIR}/AppsLayer)
22 set(ST_DIR_HS  ${ST_DIR}/HomeScreenLayer)
23 set(ST_DIR_NHS ${ST_DIR}/NearHomeScreen)
24 set(ST_DIR_OS  ${ST_DIR}/OnScreenlayer)
25 set(ST_DIR_RL  ${ST_DIR}/RestrictionLayer)
26 set(ST_DIR_RM  ${ST_DIR}/RestrictionMode)
27
28 add_library(${TARGETS_STM} STATIC
29    ${ST_DIR}/ZST_StateTransitionor_func.c
30    ${ST_DIR}/ZST_StateTransitionor_var.c
31    ${ST_DIR_AL}/ZAPL_AppsLayer.c
32    ${ST_DIR_AL}/ZAPL_Apps_func.c
33    ${ST_DIR_HS}/ZHSL_HomeScreen.c
34    ${ST_DIR_HS}/ZHSL_HomeScreen_func.c
35    ${ST_DIR_NHS}/ZNHL_NearHomescreen.c
36    ${ST_DIR_NHS}/ZNHL_NearHomeScreen_func.c
37    ${ST_DIR_OS}/ZOSL_OslMain.c
38    ${ST_DIR_OS}/ZOSL_OnScreen_func.c
39    ${ST_DIR_RL}/ZREL_RelMain.c
40    ${ST_DIR_RL}/ZREL_Restriction_func.c
41    ${ST_DIR_RM}/ZREM_RestrictionMode.c
42    ${ST_DIR_RM}/ZREM_RestrictionMode_func.c
43 )
44
45 target_include_directories(${TARGETS_STM}
46     PRIVATE
47         ./include
48         ./${ST_DIR}
49         ./${ST_DIR_AL}
50         ./${ST_DIR_HS}
51         ./${ST_DIR_NHS}
52         ./${ST_DIR_OS}
53         ./${ST_DIR_RL}
54         ./${ST_DIR_RM}
55         ./${ST_DIR_CMN}
56 )
57
58 target_compile_definitions(${TARGETS_STM}
59     PRIVATE
60         _GNU_SOURCE
61 )
62
63 target_compile_options(${TARGETS_STM}
64     PRIVATE
65         -Wall -Wextra -Wno-unused-parameter -Wno-comment)
66
67 set_target_properties(${TARGETS_STM}
68     PROPERTIES
69         C_EXTENSIONS OFF
70         C_STANDARD 99
71         C_STANDARD_REQUIRED ON
72 )