1 # Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
16 # @file CMakeLists.txt
17 # @author Lukasz Wrzosek (l.wrzosek@samsung.com)
21 ADD_DEFINITIONS("-DWRT_LOG")
23 # "smack-labeling-support-static" static library -------------------------------
24 SET(SMACK_LABELING_SUPPORT_STATIC "smack-labeling-support-static")
25 PKG_CHECK_MODULES(SMACK_LABELING_SUPPORT_DEPS
30 SET(SMACK_LABELING_SUPPORT_SOURCES
31 ${PROJECT_SOURCE_DIR}/src/wrt-client/process_pool/smack_labeling_support.cpp
33 SET(SMACK_LABELING_SUPPORT_INCLUDES
34 ${PROJECT_SOURCE_DIR}/src/wrt-client/process_pool/
37 ${SMACK_LABELING_SUPPORT_INCLUDES}
38 ${SMACK_LABELING_SUPPORT_DEPS_INCLUDE_DIRS}
40 ADD_LIBRARY(${SMACK_LABELING_SUPPORT_STATIC} STATIC
41 ${SMACK_LABELING_SUPPORT_SOURCES}
43 TARGET_LINK_LIBRARIES(${SMACK_LABELING_SUPPORT_STATIC}
44 ${SMACK_LABELING_SUPPORT_DEPS_LIBRARIES}
46 # ------------------------------------------------------------------------------
48 #it is here, so no INCLUDE_DIRS and DEFINITIONS are passed there
51 ${PROJECT_SOURCE_DIR}/src
54 SET(WRT_CORE_BASE_SOURCES
55 ${WRT_SRC_DIR}/domain/application_data.cpp
56 ${WRT_SRC_DIR}/domain/widget_data_types.cpp
57 ${WRT_SRC_DIR}/domain/widget_deserialize_model.cpp
58 ${WRT_SRC_DIR}/domain/localization_setting.cpp
59 ${WRT_SRC_DIR}/domain/widget_model.cpp
60 ${WRT_SRC_DIR}/domain/main_thread.cpp
61 ${WRT_SRC_DIR}/domain/prepare_external_storage.cpp
65 ${WRT_SRC_DIR}/plugin-service
67 ${WRT_SRC_DIR}/profiling
71 SET(WRT_PLUGIN_LOADING_DIR
72 ${WRT_SRC_DIR}/plugin-service/plugin-loading/
76 SET(PLUGIN_LOADING_INCLUDES
77 ${WRT_PLUGIN_LOADING_DIR}
112 capi-appfw-app-manager
115 SET(SYS_WRT_BASIC_DEP
140 LIST(APPEND SYS_WRT_BASIC_DEP libprivilege-control)
144 LIST(APPEND SYS_WRT_BASIC_DEP glesv2)
146 LIST(APPEND SYS_WRT_BASIC_DEP gles20)
149 PKG_CHECK_MODULES(SYS_WRT_ENGINE_DEPS
154 PKG_CHECK_MODULES(WRT_ENGINE_DEPS
159 SET(WRT_ENGINE_INCLUDE_DIRS
161 ${PLUGIN_LOADING_INCLUDES}
162 ${WRT_ENGINE_DEPS_INCLUDE_DIRS}
166 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS})
167 ADD_DEFINITIONS(${SYS_WRT_ENGINE_DEPS_CFLAGS_OTHER})
168 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS})
169 ADD_DEFINITIONS(${WRT_ENGINE_DEPS_CFLAGS_OTHER})
171 INCLUDE_DIRECTORIES(SYSTEM ${SYS_WRT_ENGINE_DEPS_INCLUDE_DIRS})
172 INCLUDE_DIRECTORIES(${WRT_ENGINE_INCLUDE_DIRS})
174 ADD_LIBRARY(${TARGET_WRT_ENGINE_STATIC} STATIC
175 ${WRT_CORE_BASE_SOURCES}
178 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
179 SOVERSION ${PROJECT_API_VERSION}
180 VERSION ${PROJECT_VERSION})
182 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
184 SET_TARGET_PROPERTIES(${TARGET_WRT_ENGINE_STATIC} PROPERTIES
185 COMPILE_FLAGS "-include profiling_util.h")
188 ${WRT_SRC_DIR}/domain/widget_model.h
189 DESTINATION include/${PROJECT_NAME}
193 ${WRT_SRC_DIR}/domain/widget_data_types.h
194 DESTINATION include/${PROJECT_NAME}
197 ADD_SUBDIRECTORY(view)
198 ADD_SUBDIRECTORY(api_new)
199 ADD_SUBDIRECTORY(wrt-client)
200 ADD_SUBDIRECTORY(wrt-launcher)
201 ADD_SUBDIRECTORY(plugin-service)
203 ADD_SUBDIRECTORY(profiling)
205 ADD_SUBDIRECTORY(wrt-launchpad-daemon)