~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/meanwhile/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
add_subdirectory( icons )
 
3
 
 
4
add_definitions(${LIBMEANWHILE_DEFINITIONS})
 
5
include_directories(${LIBMEANWHILE_INCLUDE_DIR})
 
6
 
 
7
########### next target ###############
 
8
 
 
9
set(kopete_meanwhile_PART_SRCS
 
10
   meanwhileaccount.cpp
 
11
   meanwhileaddcontactpage.cpp
 
12
   meanwhileplugin.cpp
 
13
   meanwhilecontact.cpp
 
14
   meanwhileprotocol.cpp
 
15
   meanwhileeditaccountwidget.cpp
 
16
   meanwhilesession.cpp )
 
17
 
 
18
kde4_add_ui_files(kopete_meanwhile_PART_SRCS
 
19
   ui/meanwhileaddcontact.ui
 
20
   ui/meanwhileeditaccount.ui
 
21
)
 
22
 
 
23
kde4_add_plugin(kopete_meanwhile ${kopete_meanwhile_PART_SRCS})
 
24
 
 
25
target_link_libraries(kopete_meanwhile
 
26
  ${KDE4_KDECORE_LIBS} ${GLIB2_LIBRARIES} ${LIBMEANWHILE_LIBRARY}
 
27
  ${KDE4_KDEUI_LIBS} ${QT_QTNETWORK_LIBRARY} ${QT_QT3SUPPORT_LIBRARY}
 
28
  kopete)
 
29
 
 
30
install(TARGETS kopete_meanwhile DESTINATION ${PLUGIN_INSTALL_DIR})
 
31
 
 
32
########### install files ###############
 
33
 
 
34
install(FILES kopete_meanwhile.desktop DESTINATION ${SERVICES_INSTALL_DIR})
 
35
 
 
36
 
 
37
 
 
38