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

« back to all changes in this revision

Viewing changes to plugins/pipes/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
find_package(KDE4 REQUIRED)
 
2
include (KDE4Defaults)
 
3
include (MacroLibrary)
 
4
include(MacroOptionalAddSubdirectory)
 
5
 
 
6
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
 
7
 
 
8
include_directories ( ${KOPETE_INCLUDES} )
 
9
 
 
10
#add_subdirectory ( tests )
 
11
 
 
12
########### next target ###############
 
13
 
 
14
set (kopete_pipes_PART_SRCS 
 
15
 pipesplugin.cpp
 
16
 pipesconfig.cpp )
 
17
 
 
18
kde4_add_plugin( kopete_pipes ${kopete_pipes_PART_SRCS})
 
19
 
 
20
target_link_libraries( kopete_pipes ${KDE4_KIO_LIBS} ${KDE4_KDEUI_LIBS} kopete )
 
21
 
 
22
install( TARGETS kopete_pipes DESTINATION ${PLUGIN_INSTALL_DIR})
 
23
 
 
24
 
 
25
########### next target ###############
 
26
 
 
27
set ( kcm_kopete_pipes_PART_SRCS
 
28
  pipespreferences.cpp
 
29
  pipesdelegate.cpp
 
30
  pipesmodel.cpp
 
31
  pipesconfig.cpp )
 
32
 
 
33
kde4_add_ui_files( kcm_kopete_pipes_PART_SRCS pipesprefsbase.ui )
 
34
 
 
35
kde4_add_plugin( kcm_kopete_pipes ${kcm_kopete_pipes_PART_SRCS} )
 
36
 
 
37
target_link_libraries( kcm_kopete_pipes ${KDE4_KUTILS_LIBS} ${KDE4_KIO_LIBS} kopete )
 
38
 
 
39
install( TARGETS kcm_kopete_pipes  DESTINATION ${PLUGIN_INSTALL_DIR} )
 
40
 
 
41
########### install files ###############
 
42
install( FILES kopete_pipes.desktop  DESTINATION ${SERVICES_INSTALL_DIR} )
 
43
install( FILES kopete_pipes_config.desktop  DESTINATION ${SERVICES_INSTALL_DIR}/kconfiguredialog )
 
44