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

« back to all changes in this revision

Viewing changes to kopete/config/appearance/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
include_directories( 
 
3
${KOPETE_INCLUDES} 
 
4
${KOPETE_SOURCE_DIR}/kopete/contactlist
 
5
${KOPETE_BINARY_DIR}/kopete/contactlist
 
6
${KOPETE_SOURCE_DIR}/kopete/config/appearance/layout
 
7
${KOPETE_BINARY_DIR}/kopete/config/appearance/layout
 
8
)
 
9
 
 
10
link_directories( ${KOPETE_BINARY_DIR}/kopete/contactlist )
 
11
 
 
12
 
 
13
########### next target ###############
 
14
 
 
15
set(kcm_kopete_appearanceconfig_PART_SRCS
 
16
   appearanceconfig.cpp 
 
17
   contactlistlayoutwidget.cpp
 
18
   contactlistlayouteditwidget.cpp
 
19
   contactlisttoken.cpp
 
20
   tooltipeditdialog.cpp
 
21
   layout/TokenDropTarget.cpp
 
22
   layout/Token.cpp
 
23
   layout/TokenPool.cpp
 
24
   layout/TokenWithLayout.cpp )
 
25
 
 
26
kde4_add_ui_files(kcm_kopete_appearanceconfig_PART_SRCS 
 
27
   appearanceconfig_colors.ui
 
28
   appearanceconfig_contactlist.ui
 
29
   appearanceconfig_advanced.ui
 
30
   contactlistlayoutwidget.ui
 
31
   tooltipeditwidget.ui )
 
32
 
 
33
kde4_add_plugin(kcm_kopete_appearanceconfig ${kcm_kopete_appearanceconfig_PART_SRCS})
 
34
 
 
35
 
 
36
target_link_libraries(kcm_kopete_appearanceconfig ${KDE4_KUTILS_LIBS} kopete kopetecontactlist )
 
37
 
 
38
install(TARGETS kcm_kopete_appearanceconfig  DESTINATION ${PLUGIN_INSTALL_DIR})
 
39
 
 
40
 
 
41
########### install files ###############
 
42
 
 
43
install( FILES kopete_appearanceconfig.desktop  DESTINATION ${SERVICES_INSTALL_DIR})
 
44
 
 
45
 
 
46