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

« back to all changes in this revision

Viewing changes to kopete/config/chatwindow/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/chatwindow
 
5
${KOPETE_BINARY_DIR}/kopete/chatwindow
 
6
)
 
7
 
 
8
 
 
9
########### next target ###############
 
10
 
 
11
set(kcm_kopete_chatwindowconfig_PART_SRCS
 
12
   chatwindowconfig.cpp  
 
13
   emoticonthemedelegate.cpp 
 
14
   emoticonthemeitem.cpp )
 
15
 
 
16
kde4_add_ui_files(kcm_kopete_chatwindowconfig_PART_SRCS 
 
17
   chatwindowconfig_style.ui
 
18
   chatwindowconfig_emoticons.ui
 
19
   chatwindowconfig_colors.ui
 
20
   chatwindowconfig_tab.ui )
 
21
 
 
22
kde4_add_plugin(kcm_kopete_chatwindowconfig ${kcm_kopete_chatwindowconfig_PART_SRCS})
 
23
 
 
24
 
 
25
target_link_libraries(kcm_kopete_chatwindowconfig ${KDE4_KUTILS_LIBS} kopete kopetechatwindow_shared ${KDE4_KNEWSTUFF2_LIBS} ${KDE4_KHTML_LIBS})
 
26
 
 
27
install(TARGETS kcm_kopete_chatwindowconfig DESTINATION ${PLUGIN_INSTALL_DIR})
 
28
 
 
29
 
 
30
########### install files ###############
 
31
 
 
32
install( FILES kopete_chatwindowconfig.desktop  DESTINATION ${SERVICES_INSTALL_DIR})
 
33
 
 
34