Popup removal
[platform/framework/web/wrt.git] / src / CMakeLists.txt
1 # Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License");
4 #    you may not use this file except in compliance with the License.
5 #    You may obtain a copy of the License at
6 #
7 #        http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS,
11 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #    See the License for the specific language governing permissions and
13 #    limitations under the License.
14 #
15
16 # @file     CMakeLists.txt
17 # @author   Lukasz Wrzosek (l.wrzosek@samsung.com)
18 # @version     1.0
19 #
20
21 #it is here, so no INCLUDE_DIRS and DEFINITIONS are passed there
22 ADD_SUBDIRECTORY(view)
23
24
25 SET(WRT_SRC_DIR
26    ${PROJECT_SOURCE_DIR}/src
27    )
28
29 SET(WRT_CORE_BASE_SOURCES
30     ${WRT_SRC_DIR}/domain/global_context.cpp
31     ${WRT_SRC_DIR}/domain/widget_data_types.cpp
32     ${WRT_SRC_DIR}/domain/widget_deserialize_model.cpp
33     ${WRT_SRC_DIR}/domain/localization_setting.cpp
34     ${WRT_SRC_DIR}/domain/widget_model.cpp
35     ${WRT_SRC_DIR}/domain/main_thread.cpp
36     )
37
38 SET(WRT_CORE_INCLUDES
39     ${WRT_SRC_DIR}/plugin-service
40     ${WRT_SRC_DIR}/common
41     ${WRT_SRC_DIR}/utils
42     ${WRT_SRC_DIR}/orm
43     ${WRT_SRC_DIR}/configuration
44     ${WRT_SRC_DIR}/domain
45     ${WRT_SRC_DIR}/localization
46     ${WRT_SRC_DIR}/profiling
47     ${WRT_SRC_DIR}/global_logic
48     ${WRT_SRC_DIR}/ui
49     ${WRT_SRC_DIR}/smack
50     ${WRT_SRC_DIR}/view
51     )
52
53 SET(WRT_PLUGIN_LOADING_DIR
54     ${WRT_SRC_DIR}/plugin-service/plugin-loading/
55    )
56
57
58 SET(PLUGIN_LOADING_INCLUDES
59   ${WRT_PLUGIN_LOADING_DIR}
60 )
61
62 SET(WRT_BASIC_DEP
63     dpl-efl
64     dpl-dbus-efl
65     dpl-event-efl
66     dpl-utils-efl
67     wrt-popup-ace-runner
68     security-core
69     security-client
70 )
71
72
73 SET(SYS_WRT_BASIC_DEP
74     openssl
75     libpcrecpp
76     glib-2.0
77     gthread-2.0
78     libsoup-2.4
79     libiri
80     appsvc
81     cert-svc-vcore
82     edje
83     ecore
84     ecore-x
85     evas
86     eina
87     ewebkit2
88     elementary
89     vconf
90     cert-svc
91     ui-gadget-1
92     secure-storage
93 )
94
95 IF(SMACK_ENABLED)
96   LIST(APPEND SYS_WRT_BASIC_DEP libprivilege-control)
97 ENDIF(SMACK_ENABLED)
98
99
100
101 PKG_CHECK_MODULES(SYS_WRT_ENGINE_DEPS
102     ${SYS_WRT_BASIC_DEP}
103     REQUIRED
104 )
105
106 PKG_CHECK_MODULES(WRT_ENGINE_DEPS
107     ${WRT_BASIC_DEP}
108     REQUIRED
109 )
110
111 SET(WRT_ENGINE_INCLUDE_DIRS
112     ${WRT_CORE_INCLUDES}
113     ${PLUGIN_LOADING_INCLUDES}
114     ${WRT_ENGINE_DEPS_INCLUDE_DIRS}
115 )
116
117 #wrt-engine-static
118 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS})
119 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS_OTHER})
120 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS})
121 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS_OTHER})
122
123 INCLUDE_DIRECTORIES(SYSTEM ${SYS_WRT_ENGINE_DEPS_INCLUDE_DIRS})
124 INCLUDE_DIRECTORIES(${WRT_ENGINE_INCLUDE_DIRS})
125
126 ADD_LIBRARY(${TARGET_WRT_ENGINE_STATIC} STATIC
127     ${WRT_CORE_BASE_SOURCES}
128 )
129
130 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
131     SOVERSION ${PROJECT_API_VERSION}
132     VERSION ${PROJECT_VERSION})
133
134 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
135     COMPILE_FLAGS -fPIC)
136 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
137     COMPILE_FLAGS "-include profiling_util.h")
138
139 TARGET_LINK_LIBRARIES(${TARGET_WRT_ENGINE_STATIC}
140     ${TARGET_WRT_DAO_RW_LIB}
141     ${PROF_LIB}
142     )
143
144 INSTALL(FILES
145     ${WRT_SRC_DIR}/domain/widget_model.h
146     DESTINATION include/${PROJECT_NAME}
147 )
148
149 INSTALL(FILES
150     ${WRT_SRC_DIR}/domain/widget_data_types.h
151     DESTINATION include/${PROJECT_NAME}
152 )
153
154 ADD_SUBDIRECTORY(api_new)
155 ADD_SUBDIRECTORY(wrt-client)
156 ADD_SUBDIRECTORY(wrt-launcher)
157 ADD_SUBDIRECTORY(plugin-service)
158 IF(PROFILING)
159     ADD_SUBDIRECTORY(profiling)
160 ENDIF(PROFILING)
161 ADD_SUBDIRECTORY(wrt-launchpad-daemon)