~ubuntu-branches/ubuntu/utopic/telephony-service/utopic-proposed

« back to all changes in this revision

Viewing changes to libtelephonyservice/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ubuntu daily release, Gustavo Pichorim Boiko, Martti Piirainen, Tiago Salem Herrmann
  • Date: 2014-08-13 22:31:48 UTC
  • mfrom: (1.1.48)
  • Revision ID: package-import@ubuntu.com-20140813223148-5l6m9ueikhukhetd
Tags: 0.1+14.10.20140813.1-0ubuntu1
[ Ubuntu daily release ]
* New rebuild forced

[ Gustavo Pichorim Boiko ]
* Check if the self contact actually exists before getting its
  presence. (LP: #1355388)
* Do not update the .po files during `make`, update only the .pot
  file.

[ Martti Piirainen ]
* Adding support for tone generator (LP: #1187453). (LP: #1187453)

[ Tiago Salem Herrmann ]
* Use system settings to retrieve sim card display names.
* Reduce vibration duration for text messages. Fix vibration in silent
  mode options for calls/messages (LP: #1347908)

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    phoneutils.cpp
12
12
    ringtone.cpp
13
13
    telepathyhelper.cpp
 
14
    tonegenerator.cpp
14
15
    ussdmanager.cpp
15
16
    )
16
17
 
17
18
include_directories(
18
19
    ${TP_QT5_INCLUDE_DIRS}
19
20
    ${NOTIFY_INCLUDE_DIRS}
 
21
    ${GSETTINGS_QT_INCLUDE_DIRS}
20
22
    )
21
23
 
22
24
if (USE_UBUNTU_PLATFORM_API)
28
30
target_link_libraries(telephonyservice
29
31
                      ${TP_QT5_LIBRARIES}
30
32
                      ${UBUNTU_APP_LIB}
31
 
                      ${NOTIFY_LIBRARIES})
 
33
                      ${NOTIFY_LIBRARIES}
 
34
                      ${GSETTINGS_QT_LDFLAGS})
32
35
 
33
36
qt5_use_modules(telephonyservice Contacts Core DBus Feedback Multimedia Qml Quick)
34
37