kde-workspace/khotkeys/app/CMakeLists.txt

36 lines
766 B
Text
Raw Normal View History

2014-11-13 19:30:51 +02:00
########### next target ###############
set(kded_khotkeys_PART_SRCS
kded.cpp
${CMAKE_CURRENT_BINARY_DIR}/org.kde.khotkeys.xml)
qt4_generate_dbus_interface(kded.h org.kde.khotkeys.xml )
kde4_add_plugin(kded_khotkeys ${kded_khotkeys_PART_SRCS})
target_link_libraries(kded_khotkeys
KDE4::kdeui
# I'm not sure if this is needed anymore. Check it
${X11_XTest_LIB}
khotkeysprivate
kworkspace
)
2014-11-13 19:30:51 +02:00
########### install files ###############
install(
TARGETS kded_khotkeys
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
2014-11-13 19:30:51 +02:00
install(
FILES khotkeys.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}/kded
)
2014-11-13 19:30:51 +02:00
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.khotkeys.xml
DESTINATION ${KDE4_DBUS_INTERFACES_INSTALL_DIR}
)
2014-11-13 19:30:51 +02:00