~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to systemsettings/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
ImportĀ upstreamĀ versionĀ 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
ADD_SUBDIRECTORY( categories ) 
 
3
 
 
4
########### next target ###############
 
5
 
 
6
SET(systemsettings_SRCS
 
7
   kcmodulemenu.cpp
 
8
   kcmsearch.cpp
 
9
   kcmultiwidget.cpp
 
10
   main.cpp
 
11
   mainwindow.cpp
 
12
   moduleiconitem.cpp
 
13
   modulesview.cpp
 
14
#   kicongrouppage.cpp
 
15
   )
 
16
 
 
17
 
 
18
KDE4_ADD_EXECUTABLE(systemsettings ${systemsettings_SRCS})
 
19
 
 
20
TARGET_LINK_LIBRARIES(systemsettings  ${KDE4_KUTILS_LIBS} )
 
21
 
 
22
INSTALL( TARGETS systemsettings DESTINATION ${BIN_INSTALL_DIR})
 
23
 
 
24
 
 
25
########### install files ###############
 
26
 
 
27
install( FILES systemsettings.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
 
28
install( FILES systemsettingsrc DESTINATION ${SYSCONF_INSTALL_DIR} )
 
29
install( FILES systemsettingsui.rc DESTINATION ${DATA_INSTALL_DIR}/systemsettings )
 
30
 
 
31
kde4_install_icons( ${ICON_INSTALL_DIR}  )
 
32
 
 
33