2014-11-13 19:30:51 +02:00
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kcm_launch_PART_SRCS kcmlaunch.cpp )
|
|
|
|
|
2015-10-31 13:44:54 +02:00
|
|
|
set(kwin_xml ${CMAKE_SOURCE_DIR}/kwin/org.kde.KWin.xml)
|
2014-11-13 19:30:51 +02:00
|
|
|
set_source_files_properties(${kwin_xml} PROPERTIES INCLUDE "interface_util.h")
|
2023-06-18 18:30:56 +03:00
|
|
|
QT4_ADD_DBUS_INTERFACE(kcm_launch_PART_SRCS ${kwin_xml} kwin_interface)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
kde4_add_plugin(kcm_launch ${kcm_launch_PART_SRCS})
|
|
|
|
|
2023-06-18 18:30:56 +03:00
|
|
|
target_link_libraries(kcm_launch
|
|
|
|
KDE4::kdeui
|
|
|
|
${QT_QTGUI_LIBRARY}
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-18 18:30:56 +03:00
|
|
|
install(
|
|
|
|
TARGETS kcm_launch
|
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2023-06-18 18:30:56 +03:00
|
|
|
install(
|
|
|
|
FILES kcmlaunch.desktop
|
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
|
|
)
|