a2497d2439003c36b44e54bb6197f7128694eed3
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Messaging / config.cmake
1 get_current_path()
2
3 pkg_search_module(msg-service-module REQUIRED msg-service)
4 pkg_search_module(email-service-module REQUIRED email-service)
5
6 set(INCLUDES_MESSAGING_DIRECTORIES
7   ${msg-service-module_INCLUDE_DIRS}
8   ${email-service-module_INCLUDE_DIRS}
9   ${INCLUDES_IMPLEMENTATION_DBUS}
10   PARENT_SCOPE
11 )
12
13 set(LIBS_IMPLEMENTATION_MESSAGING
14   ${msg-service-module_LIBRARIES}
15   ${email-service-module_LIBRARIES}
16   ${LIBS_IMPLEMENTATION_DBUS}
17   PARENT_SCOPE
18 )
19
20 set(SRCS_IMPLEMENTATION_MESSAGING
21         ${CURRENT_PATH}/Attachment.cpp
22         ${CURRENT_PATH}/BinarySms.cpp
23         ${CURRENT_PATH}/Email.cpp
24         ${CURRENT_PATH}/Messaging.cpp
25         ${CURRENT_PATH}/Mms.cpp
26         ${CURRENT_PATH}/Sms.cpp
27         ${CURRENT_PATH}/CallbackMgr.cpp
28         ${CURRENT_PATH}/NetworkStatus.cpp
29         ${CURRENT_PATH}/MailSender.cpp
30         ${CURRENT_PATH}/EmailService.cpp
31         ${CURRENT_PATH}/EmailUtils.cpp
32         ${CURRENT_PATH}/EmailConverter.cpp
33         ${CURRENT_PATH}/MsgServiceHandleMgr.cpp
34         ${CURRENT_PATH}/StorageChangeMessage.cpp
35         ${CURRENT_PATH}/MailNotifier.cpp
36         ${SRCS_IMPLEMENTATION_DBUS}
37     PARENT_SCOPE
38 )