~ubuntu-branches/ubuntu/wily/telepathy-qt5/wily

« back to all changes in this revision

Viewing changes to examples/cm/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Tiago Salem Herrmann
  • Date: 2015-05-29 18:01:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150529180117-nj5geaevciyps6b5
Tags: 0.9.6.1-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
if(ENABLE_EXPERIMENTAL_SERVICE_SUPPORT)
 
1
if(ENABLE_SERVICE_SUPPORT)
2
2
    set(cm_SRCS
3
3
        protocol.h
4
4
        protocol.cpp
11
11
 
12
12
    add_executable(cm ${cm_SRCS} ${cm_MOC_SRCS})
13
13
    target_link_libraries(cm
14
 
        ${Qt5Core_LIBRARIES}
15
 
        ${Qt5DBus_LIBRARIES}
16
 
        ${Qt5Network_LIBRARIES}
17
 
        ${Qt5Xml_LIBRARIES}
18
 
        telepathy-qt${Qt5Core_VERSION_MAJOR}
19
 
        telepathy-qt${Qt5Core_VERSION_MAJOR}-service
 
14
        ${QT_QTCORE_LIBRARY}
 
15
        ${QT_QTDBUS_LIBRARY}
 
16
        ${QT_QTNETWORK_LIBRARY}
 
17
        ${QT_QTXML_LIBRARY}
 
18
        telepathy-qt${QT_VERSION_MAJOR}
 
19
        telepathy-qt${QT_VERSION_MAJOR}-service
20
20
        ${TP_QT_EXECUTABLE_LINKER_FLAGS})
21
 
endif(ENABLE_EXPERIMENTAL_SERVICE_SUPPORT)
 
21
endif(ENABLE_SERVICE_SUPPORT)