localizeWidgetModel() 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     openssl
64     libpcrecpp
65     dpl-popup-efl
66     dpl-efl
67     cert-svc-vcore
68     dpl-dbus-efl
69     dpl-event-efl
70     dpl-utils-efl
71     glib-2.0
72     gthread-2.0
73     edje
74     ecore
75     ecore-x
76     evas
77     eina
78     ewebkit2
79     elementary
80     vconf
81     cert-svc
82     libsoup-2.4
83     ui-gadget-1
84     secure-storage
85     libiri
86     appsvc
87     security-core
88     security-client
89     wrt-popup-runner
90 )
91
92 IF(SMACK_ENABLED)
93   LIST(APPEND WRT_BASIC_DEP libprivilege-control)
94 ENDIF(SMACK_ENABLED)
95
96 PKG_CHECK_MODULES(WRT_ENGINE_DEPS
97     ${WRT_BASIC_DEP}
98     REQUIRED)
99
100 SET(WRT_ENGINE_INCLUDE_DIRS
101     ${WRT_CORE_INCLUDES}
102     ${PLUGIN_LOADING_INCLUDES}
103     ${WRT_ENGINE_DEPS_INCLUDE_DIRS}
104 )
105
106 #wrt-engine-static
107 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS})
108 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS_OTHER})
109 INCLUDE_DIRECTORIES(${WRT_ENGINE_INCLUDE_DIRS})
110
111 ADD_LIBRARY(${TARGET_WRT_ENGINE_STATIC} STATIC
112     ${WRT_CORE_BASE_SOURCES}
113 )
114
115 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
116     SOVERSION ${PROJECT_API_VERSION}
117     VERSION ${PROJECT_VERSION})
118
119 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
120     COMPILE_FLAGS -fPIC)
121 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
122     COMPILE_FLAGS "-include profiling_util.h")
123
124 TARGET_LINK_LIBRARIES(${TARGET_WRT_ENGINE_STATIC}
125     ${TARGET_WRT_DAO_RW_LIB}
126     ${PROF_LIB}
127     )
128
129 INSTALL(FILES
130     ${WRT_SRC_DIR}/domain/widget_model.h
131     DESTINATION include/${PROJECT_NAME}
132 )
133
134 INSTALL(FILES
135     ${WRT_SRC_DIR}/domain/widget_data_types.h
136     DESTINATION include/${PROJECT_NAME}
137 )
138
139 ADD_SUBDIRECTORY(api_new)
140 ADD_SUBDIRECTORY(wrt-client)
141 ADD_SUBDIRECTORY(wrt-launcher)
142 ADD_SUBDIRECTORY(plugin-service)
143 IF(PROFILING)
144     ADD_SUBDIRECTORY(profiling)
145 ENDIF(PROFILING)