summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/CMakeLists.txt
blob: 8f7f6b988c2494d1c749ee3346a9956dcacf708f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#################################################
#
#  (C) 2010-2011 Serghei Amelian
#  serghei (DOT) amelian (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

add_subdirectory( addaccountwizard )
add_subdirectory( addcontactwizard )
add_subdirectory( contactlist )
add_subdirectory( chatwindow )
add_subdirectory( config )
add_subdirectory( tdeconf_update )

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_BINARY_DIR}/kopete/libkopete/ui
  ${CMAKE_BINARY_DIR}/kopete/libkopete
  ${CMAKE_BINARY_DIR}/kopete/kopete/addcontactwizard
  ${CMAKE_BINARY_DIR}/kopete/kopete/contactlist
  ${CMAKE_BINARY_DIR}
  ${CMAKE_SOURCE_DIR}/kopete/libkopete/private
  ${CMAKE_SOURCE_DIR}/kopete/libkopete
  ${CMAKE_SOURCE_DIR}/kopete/libkopete/ui
  ${CMAKE_SOURCE_DIR}/kopete/libkopete/avdevice
  ${CMAKE_SOURCE_DIR}/kopete/kopete/addaccountwizard
  ${CMAKE_SOURCE_DIR}/kopete/kopete/addcontactwizard
  ${CMAKE_SOURCE_DIR}/kopete/kopete/contactlist
  ${CMAKE_SOURCE_DIR}/kopete/kopete/config/plugins
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### other data ################################

tde_install_icons( )
install( FILES kopete.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
install( FILES kopeteui.rc eventsrc DESTINATION ${DATA_INSTALL_DIR}/kopete )
install( FILES x-kopete-emoticons.desktop DESTINATION ${MIME_INSTALL_DIR}/application )


##### kopete (executable) #######################

tde_add_executable( kopete AUTOMOC
  SOURCES
    main.cpp kopeteapplication.cpp kopeteiface.cpp
    kopeteiface.skel systemtray.cpp kopeteballoon.cpp
    kopetewindow.cpp kopeteaccountstatusbaricon.cpp
    kimifaceimpl.cpp kimiface.skel groupkabcselectorwidget.ui
    kopeteeditglobalidentitywidget.cpp
  LINK
    kopetecontactlist-static kopeteaddaccountwizard-static
    kopeteaddcontactwizard-static kopeteui-static
    kopetepluginconfig-static kopete-shared
  DESTINATION ${BIN_INSTALL_DIR}
)