~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kcontrol/launch/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
########### next target ###############
 
5
 
 
6
set(kcm_launch_PART_SRCS kcmlaunch.cpp )
 
7
 
 
8
set(kdesktop_xml  ${KDEBASE_WORKSPACE_SOURCE_DIR}/krunner/dbus/org.kde.krunner.App.xml)
 
9
QT4_ADD_DBUS_INTERFACE( kcm_launch_PART_SRCS ${kdesktop_xml} krunner_interface )
 
10
set(kwin_xml ${KDEBASE_WORKSPACE_SOURCE_DIR}/kwin/org.kde.KWin.xml)
 
11
set_source_files_properties(${kwin_xml} PROPERTIES INCLUDE "interface_util.h")
 
12
QT4_ADD_DBUS_INTERFACE( kcm_launch_PART_SRCS ${kwin_xml} kwin_interface )
 
13
 
 
14
 
 
15
 
 
16
kde4_add_plugin(kcm_launch ${kcm_launch_PART_SRCS})
 
17
 
 
18
 
 
19
target_link_libraries(kcm_launch  ${KDE4_KDEUI_LIBS} ${QT_QTGUI_LIBRARY})
 
20
 
 
21
install(TARGETS kcm_launch  DESTINATION ${PLUGIN_INSTALL_DIR} )
 
22
 
 
23
 
 
24
########### install files ###############
 
25
 
 
26
install( FILES kcmlaunch.desktop  DESTINATION  ${SERVICES_INSTALL_DIR} )
 
27