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

« back to all changes in this revision

Viewing changes to plugins/history/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
)
 
5
 
 
6
 
 
7
########### next target ###############
 
8
 
 
9
set(kopete_history_PART_SRCS 
 
10
   historyplugin.cpp 
 
11
   historydialog.cpp 
 
12
   historylogger.cpp 
 
13
   converter.cpp 
 
14
   historyguiclient.cpp
 
15
   historyimport.cpp )
 
16
 
 
17
kde4_add_ui_files(kopete_history_PART_SRCS historyviewer.ui )
 
18
 
 
19
kde4_add_kcfg_files(kopete_history_PART_SRCS historyconfig.kcfgc )
 
20
 
 
21
 
 
22
kde4_add_plugin(kopete_history ${kopete_history_PART_SRCS})
 
23
 
 
24
 
 
25
target_link_libraries(kopete_history  ${KDE4_KHTML_LIBS} kopete )
 
26
 
 
27
install(TARGETS kopete_history  DESTINATION ${PLUGIN_INSTALL_DIR})
 
28
 
 
29
 
 
30
########### next target ###############
 
31
 
 
32
set(kcm_kopete_history_PART_SRCS historypreferences.cpp )
 
33
 
 
34
kde4_add_ui_files(kcm_kopete_history_PART_SRCS historyprefsui.ui )
 
35
 
 
36
kde4_add_kcfg_files(kcm_kopete_history_PART_SRCS historyconfig.kcfgc )
 
37
 
 
38
 
 
39
kde4_add_plugin(kcm_kopete_history ${kcm_kopete_history_PART_SRCS})
 
40
 
 
41
 
 
42
target_link_libraries(kcm_kopete_history  ${KDE4_KUTILS_LIBS} kopete )
 
43
 
 
44
install(TARGETS kcm_kopete_history  DESTINATION ${PLUGIN_INSTALL_DIR})
 
45
 
 
46
 
 
47
########### install files ###############
 
48
 
 
49
install( FILES historyconfig.kcfg  DESTINATION ${KCFG_INSTALL_DIR})
 
50
install( FILES kopete_history.desktop  DESTINATION ${SERVICES_INSTALL_DIR})
 
51
install( FILES historyui.rc  historychatui.rc  DESTINATION ${DATA_INSTALL_DIR}/kopete_history)
 
52
install( FILES kopete_history_config.desktop  DESTINATION ${SERVICES_INSTALL_DIR}/kconfiguredialog)
 
53
 
 
54
 
 
55
 
 
56