Update change log and spec for wrt-plugins-tizen_0.2.73
[profile/ivi/wrt-plugins-tizen.git] / src / platform / 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_PLATFORM_IMPLEMENTATION_MESSAGING
7   ${msg-service-module_INCLUDE_DIRS}
8   ${email-service-module_INCLUDE_DIRS}
9   ${INCLUDES_PLATFORM_IMPLEMENTATION_DBUS}
10   PARENT_SCOPE
11 )
12
13 set(LIBS_PLATFORM_IMPLEMENTATION_MESSAGING
14   ${msg-service-module_LIBRARIES}
15   ${email-service-module_LIBRARIES}
16   ${LIBS_PLATFORM_IMPLEMENTATION_DBUS}
17   PARENT_SCOPE
18 )
19
20 set(SRCS_PLATFORM_IMPLEMENTATION_MESSAGING
21     ${CURRENT_PATH}/MessagingServiceManager.cpp
22     ${CURRENT_PATH}/MessagingService.cpp
23     
24     ${CURRENT_PATH}/Attachment.cpp
25     ${CURRENT_PATH}/BinarySms.cpp
26     ${CURRENT_PATH}/Email.cpp
27     ${CURRENT_PATH}/Messaging.cpp
28     ${CURRENT_PATH}/Mms.cpp
29     ${CURRENT_PATH}/Sms.cpp
30     ${CURRENT_PATH}/EmptyMessage.cpp
31     ${CURRENT_PATH}/CallbackMgr.cpp
32     ${CURRENT_PATH}/NetworkStatus.cpp
33     ${CURRENT_PATH}/SyncNetworkStatus.cpp
34     ${CURRENT_PATH}/MailSender.cpp
35     ${CURRENT_PATH}/MailSync.cpp
36     ${CURRENT_PATH}/EmailService.cpp
37     ${CURRENT_PATH}/EmailUtils.cpp
38     ${CURRENT_PATH}/EmailConverter.cpp
39     ${CURRENT_PATH}/MessageQueryGenerator.cpp
40     ${CURRENT_PATH}/Conversation.cpp
41     ${CURRENT_PATH}/MessageFolder.cpp
42     ${CURRENT_PATH}/ConversationQueryGenerator.cpp
43     ${CURRENT_PATH}/FolderQueryGenerator.cpp    
44     ${CURRENT_PATH}/messageDB/MsgSqliteWrapper.cpp
45     ${CURRENT_PATH}/messageDB/MessageStorageReader.cpp
46  #   ${CURRENT_PATH}/../../API/Filesystem/IManager.cpp
47  #   ${CURRENT_PATH}/../../API/Filesystem/IPath.cpp
48  #   ${CURRENT_PATH}/../../API/Filesystem/INode.cpp
49  #   ${CURRENT_PATH}/../../API/Filesystem/IStream.cpp
50  #   ${CURRENT_PATH}/../../API/Filesystem/EventCopy.cpp
51  #   ${CURRENT_PATH}/../../API/Filesystem/EventFind.cpp
52  #   ${CURRENT_PATH}/../../API/Filesystem/EventResolve.cpp
53  #   ${CURRENT_PATH}/../../API/Filesystem/EventMove.cpp
54  #   ${CURRENT_PATH}/../../API/Filesystem/EventRemove.cpp
55  #   ${CURRENT_PATH}/../../API/Filesystem/EventOpen.cpp
56  #   ${CURRENT_PATH}/../../API/Filesystem/EventListNodes.cpp
57  #   ${CURRENT_PATH}/../../API/Filesystem/EventReadText.cpp
58  #   ${CURRENT_PATH}/../../API/Filesystem/NodeFilter.cpp
59  #   ${CURRENT_PATH}/../../API/Filesystem/PathUtils.cpp
60  #   ${CURRENT_PATH}/../Filesystem/System.cpp
61  #   ${CURRENT_PATH}/../Filesystem/Manager.cpp
62  #   ${CURRENT_PATH}/../Filesystem/Utils.cpp
63  #   ${CURRENT_PATH}/../Filesystem/Path.cpp
64  #   ${CURRENT_PATH}/../Filesystem/Node.cpp
65  #   ${CURRENT_PATH}/../Filesystem/Stream.cpp
66  #   ${CURRENT_PATH}/../Filesystem/NodeFilterMatcher.cpp
67  #   ${CURRENT_PATH}/../Filesystem/Command.cpp
68  #   ${CURRENT_PATH}/../Filesystem/MoveCommand.cpp
69  #   ${CURRENT_PATH}/../Filesystem/RemoveCommand.cpp
70  #   ${CURRENT_PATH}/../Filesystem/CopyCommand.cpp
71    ${SRCS_PLATFORM_IMPLEMENTATION_DBUS}
72   PARENT_SCOPE 
73 )