de286a7b8cb058ae95161db4b28ccfdf480bf3bb
[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     StateTransitionor)
20 set(ST_DIR_CMN 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}
29     STATIC
30         ${ST_DIR}/ZST_StateTransitionor_func.c
31         ${ST_DIR}/ZST_StateTransitionor_var.c
32         ${ST_DIR_AL}/ZAPL_AppsLayer.c
33         ${ST_DIR_AL}/ZAPL_Apps_func.c
34         ${ST_DIR_HS}/ZHSL_HomeScreen.c
35         ${ST_DIR_HS}/ZHSL_HomeScreen_func.c
36         ${ST_DIR_NHS}/ZNHL_NearHomescreen.c
37         ${ST_DIR_NHS}/ZNHL_NearHomeScreen_func.c
38         ${ST_DIR_OS}/ZOSL_OslMain.c
39         ${ST_DIR_OS}/ZOSL_OnScreen_func.c
40         ${ST_DIR_RL}/ZREL_RelMain.c
41         ${ST_DIR_RL}/ZREL_Restriction_func.c
42         ${ST_DIR_RM}/ZREM_RestrictionMode.c
43         ${ST_DIR_RM}/ZREM_RestrictionMode_func.c
44 )
45
46 target_include_directories(${TARGETS_STM}
47     PRIVATE
48         ./
49         ./${ST_DIR}
50         ./${ST_DIR_AL}
51         ./${ST_DIR_HS}
52         ./${ST_DIR_NHS}
53         ./${ST_DIR_OS}
54         ./${ST_DIR_RL}
55         ./${ST_DIR_RM}
56         ./${ST_DIR_CMN}
57 )
58
59 target_compile_definitions(${TARGETS_STM}
60     PRIVATE
61         _GNU_SOURCE
62 )
63
64 target_compile_options(${TARGETS_STM}
65     PRIVATE
66         -Wall -Wextra -Wno-unused-parameter -Wno-comment)
67
68 set_target_properties(${TARGETS_STM}
69     PROPERTIES
70         C_EXTENSIONS OFF
71         C_STANDARD 99
72         C_STANDARD_REQUIRED ON
73 )