27ca92b546d4ef28c958c83b9037f8762589f90b
[apps/agl-service-windowmanager-2017.git] / src / policy_manager / stm / zipc / src / 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 include(FindPkgConfig)
18
19 # We do not want a prefix for our module
20 set(CMAKE_SHARED_MODULE_PREFIX "")
21
22 set(TARGETS_STM libstm)
23
24 set(ST_DIR     StateTransitionor)
25 set(ST_DIR_CMN Common)
26 set(ST_DIR_AL  ${ST_DIR}/AppsLayer)
27 set(ST_DIR_HS  ${ST_DIR}/HomeScreenLayer)
28 set(ST_DIR_NHS ${ST_DIR}/NearHomeScreen)
29 set(ST_DIR_OS  ${ST_DIR}/OnScreenlayer)
30 set(ST_DIR_RL  ${ST_DIR}/RestrictionLayer)
31 set(ST_DIR_RM  ${ST_DIR}/RestrictionMode)
32
33 add_library(${TARGETS_STM} MODULE
34    ${ST_DIR}/ZST_StateTransitionor_func.c
35    ${ST_DIR}/ZST_StateTransitionor_var.c
36    ${ST_DIR_AL}/ZAPL_AppsLayer.c
37    ${ST_DIR_AL}/ZAPL_Apps_func.c
38    ${ST_DIR_HS}/ZHSL_HomeScreen.c
39    ${ST_DIR_HS}/ZHSL_HomeScreen_func.c
40    ${ST_DIR_NHS}/ZNHL_NearHomescreen.c
41    ${ST_DIR_NHS}/ZNHL_NearHomeScreen_func.c
42    ${ST_DIR_OS}/ZOSL_OslMain.c
43    ${ST_DIR_OS}/ZOSL_OnScreen_func.c
44    ${ST_DIR_RL}/ZREL_RelMain.c
45    ${ST_DIR_RL}/ZREL_Restriction_func.c
46    ${ST_DIR_RM}/ZREM_RestrictionMode.c
47    ${ST_DIR_RM}/ZREM_RestrictionMode_func.c
48 )
49
50 target_include_directories(${TARGETS_STM}
51     PRIVATE
52         ./include
53         ./${ST_DIR}
54         ./${ST_DIR_AL}
55         ./${ST_DIR_HS}
56         ./${ST_DIR_NHS}
57         ./${ST_DIR_OS}
58         ./${ST_DIR_RL}
59         ./${ST_DIR_RM}
60         ./${ST_DIR_CMN}
61 )
62
63 target_compile_definitions(${TARGETS_STM}
64     PRIVATE
65         _GNU_SOURCE
66 )
67
68 target_compile_options(${TARGETS_STM}
69     PRIVATE
70         -Wall -Wextra -Wno-unused-parameter -Wno-comment)
71
72 set_target_properties(${TARGETS_STM}
73     PROPERTIES
74         C_EXTENSIONS OFF
75         C_STANDARD 99
76         C_STANDARD_REQUIRED ON
77 )
78
79 install(
80    TARGETS ${TARGET_STM}
81    DESTINATION ${CMAKE_INSTALL_LIBDIR}
82    COMPONENT "runtime"
83 )