[Release] wrt_0.8.191
[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/widget_data_types.cpp
31     ${WRT_SRC_DIR}/domain/widget_deserialize_model.cpp
32     ${WRT_SRC_DIR}/domain/localization_setting.cpp
33     ${WRT_SRC_DIR}/domain/widget_model.cpp
34     ${WRT_SRC_DIR}/domain/main_thread.cpp
35     ${WRT_SRC_DIR}/domain/prepare_external_storage.cpp
36     )
37
38 SET(WRT_CORE_INCLUDES
39     ${WRT_SRC_DIR}/plugin-service
40     ${WRT_SRC_DIR}/domain
41     ${WRT_SRC_DIR}/profiling
42     ${WRT_SRC_DIR}/view
43     )
44
45 SET(WRT_PLUGIN_LOADING_DIR
46     ${WRT_SRC_DIR}/plugin-service/plugin-loading/
47    )
48
49
50 SET(PLUGIN_LOADING_INCLUDES
51   ${WRT_PLUGIN_LOADING_DIR}
52 )
53
54 SET(WRT_BASIC_DEP
55     dpl-efl
56     dpl-dbus-efl
57     dpl-event-efl
58     dpl-utils-efl
59     wrt-popup-ace-runner
60     security-core
61     security-client
62 )
63
64
65 SET(SYS_WRT_BASIC_DEP
66     openssl
67     libpcrecpp
68     glib-2.0
69     gthread-2.0
70     libsoup-2.4
71     libiri
72     appsvc
73     cert-svc-vcore
74     edje
75     ecore
76     ecore-x
77     evas
78     eina
79     ewebkit2
80     elementary
81     vconf
82     cert-svc
83     ui-gadget-1
84     secure-storage
85     app2sd
86 )
87
88 IF(SMACK_ENABLED)
89   LIST(APPEND SYS_WRT_BASIC_DEP libprivilege-control)
90 ENDIF(SMACK_ENABLED)
91
92
93
94 PKG_CHECK_MODULES(SYS_WRT_ENGINE_DEPS
95     ${SYS_WRT_BASIC_DEP}
96     REQUIRED
97 )
98
99 PKG_CHECK_MODULES(WRT_ENGINE_DEPS
100     ${WRT_BASIC_DEP}
101     REQUIRED
102 )
103
104 SET(WRT_ENGINE_INCLUDE_DIRS
105     ${WRT_CORE_INCLUDES}
106     ${PLUGIN_LOADING_INCLUDES}
107     ${WRT_ENGINE_DEPS_INCLUDE_DIRS}
108 )
109
110 #wrt-engine-static
111 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS})
112 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS_OTHER})
113 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS})
114 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS_OTHER})
115
116 INCLUDE_DIRECTORIES(SYSTEM ${SYS_WRT_ENGINE_DEPS_INCLUDE_DIRS})
117 INCLUDE_DIRECTORIES(${WRT_ENGINE_INCLUDE_DIRS})
118
119 ADD_LIBRARY(${TARGET_WRT_ENGINE_STATIC} STATIC
120     ${WRT_CORE_BASE_SOURCES}
121 )
122
123 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
124     SOVERSION ${PROJECT_API_VERSION}
125     VERSION ${PROJECT_VERSION})
126
127 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
128     COMPILE_FLAGS -fPIC)
129 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
130     COMPILE_FLAGS "-include profiling_util.h")
131
132 TARGET_LINK_LIBRARIES(${TARGET_WRT_ENGINE_STATIC}
133     ${TARGET_WRT_DAO_RW_LIB}
134     ${PROF_LIB}
135     )
136
137 INSTALL(FILES
138     ${WRT_SRC_DIR}/domain/widget_model.h
139     DESTINATION include/${PROJECT_NAME}
140 )
141
142 INSTALL(FILES
143     ${WRT_SRC_DIR}/domain/widget_data_types.h
144     DESTINATION include/${PROJECT_NAME}
145 )
146
147 ADD_SUBDIRECTORY(api_new)
148 ADD_SUBDIRECTORY(wrt-client)
149 ADD_SUBDIRECTORY(wrt-launcher)
150 ADD_SUBDIRECTORY(plugin-service)
151 IF(PROFILING)
152     ADD_SUBDIRECTORY(profiling)
153 ENDIF(PROFILING)
154 ADD_SUBDIRECTORY(wrt-launchpad-daemon)