summaryrefslogtreecommitdiffstats
path: root/kcontrol/kcontrol/CMakeLists.txt
blob: a197d73476b6619edcc68dfeb610f1047e01731b (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
#################################################
#
#  (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( about )

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


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

tde_install_icons()
install( FILES kcontrolui.rc DESTINATION ${DATA_INSTALL_DIR}/kcontrol )
install( FILES kinfocenterui.rc DESTINATION ${DATA_INSTALL_DIR}/kinfocenter )
install( FILES  KControl.desktop kinfocenter.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )


##### kcontrol (kdeinit) ########################

set( target kcontrol )

set( ${target}_SRCS
  main.cpp toplevel.cpp indexwidget.cpp helpwidget.cpp
  dockcontainer.cpp aboutwidget.cpp moduletreeview.cpp
  moduleiconview.cpp moduleIface.cpp moduleIface.skel
  global.cpp modules.cpp proxywidget.cpp kcrootonly.cpp
  searchwidget.cpp
)

tde_add_kdeinit_executable( ${target} AUTOMOC
  SOURCES ${${target}_SRCS}
  LINK khtml-shared
)

tde_install_symlink( kcontrol ${BIN_INSTALL_DIR}/kinfocenter )