~phablet-team/telephony-service/trunk

« back to all changes in this revision

Viewing changes to libtelephonyservice/CMakeLists.txt

  • Committer: Gustavo Pichorim Boiko
  • Date: 2014-01-20 12:57:43 UTC
  • mto: This revision was merged to the branch mainline in revision 767.
  • Revision ID: gustavo.boiko@canonical.com-20140120125743-3b7uqlb2lhaxu22w
Improve the support for handling multiple calls by:
- Using a different approach to detect background calls in the QML plugin
- Make it possible to hangup the active call to answer an incoming one
- Show notifications when calls are put on hold, when they are rejected and when
  they end.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
    applicationutils.cpp
3
3
    callentry.cpp
4
4
    callmanager.cpp
 
5
    callnotification.cpp
5
6
    channelobserver.cpp
6
7
    chatmanager.cpp
7
8
    contactutils.cpp
13
14
include_directories(
14
15
    ${TP_QT5_INCLUDE_DIRS}
15
16
    ${GSETTINGS_INCLUDE_DIRS}
 
17
    ${NOTIFY_INCLUDE_DIRS}
16
18
    )
17
19
 
18
20
if (USE_UBUNTU_PLATFORM_API)
20
22
endif (USE_UBUNTU_PLATFORM_API)
21
23
 
22
24
add_library(telephonyservice STATIC ${library_SRCS} ${library_HDRS})
23
 
target_link_libraries(telephonyservice ${TP_QT5_LIBRARIES} ${UBUNTU_APP_LIB} ${GSETTINGS_LIBRARIES})
 
25
target_link_libraries(telephonyservice
 
26
                      ${TP_QT5_LIBRARIES}
 
27
                      ${UBUNTU_APP_LIB}
 
28
                      ${NOTIFY_LIBRARIES}
 
29
                      ${GSETTINGS_LIBRARIES})
24
30
 
25
31
qt5_use_modules(telephonyservice Contacts Core DBus Multimedia Qml Quick)
26
32