2013-11-15 12:37:47 +00:00
|
|
|
add_definitions(-DKCMRULES)
|
2007-04-29 17:35:43 +00:00
|
|
|
########### next target ###############
|
|
|
|
|
2013-09-30 07:53:56 +00:00
|
|
|
set (kwinrules_MOC_HDRS yesnobox.h ../../client_machine.h ../../cursor.h)
|
2011-04-06 17:52:23 +00:00
|
|
|
qt4_wrap_cpp(kwinrules_MOC_SRCS ${kwinrules_MOC_HDRS})
|
|
|
|
set(kwinrules_SRCS ruleswidget.cpp ruleslist.cpp kwinsrc.cpp detectwidget.cpp ${kwinrules_MOC_SRCS})
|
2007-04-30 10:01:00 +00:00
|
|
|
|
2008-02-03 04:37:34 +00:00
|
|
|
kde4_add_ui_files(kwinrules_SRCS ruleslist.ui detectwidget.ui editshortcut.ui ruleswidgetbase.ui)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
set(kwin_rules_dialog_KDEINIT_SRCS main.cpp ${kwinrules_SRCS})
|
|
|
|
|
2013-10-07 23:00:27 +00:00
|
|
|
kf5_add_kdeinit_executable( kwin_rules_dialog ${kwin_rules_dialog_KDEINIT_SRCS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-05-02 09:14:40 +00:00
|
|
|
set(kwin_kcm_rules_XCB_LIBS
|
|
|
|
${XCB_XCB_LIBRARIES}
|
2013-09-30 07:53:56 +00:00
|
|
|
${XCB_XFIXES_LIBRARY}
|
|
|
|
${X11_Xcursor_LIB}
|
2013-05-02 09:14:40 +00:00
|
|
|
)
|
|
|
|
|
2013-09-30 07:56:35 +00:00
|
|
|
set(kcm_libs
|
2013-10-02 13:23:56 +00:00
|
|
|
Qt5::Concurrent
|
2013-09-30 07:56:35 +00:00
|
|
|
Qt5::X11Extras
|
|
|
|
KF5::KCMUtils
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::Completion
|
|
|
|
KF5::I18n
|
|
|
|
KF5::WindowSystem
|
2013-09-30 07:56:35 +00:00
|
|
|
KF5::XmlGui
|
|
|
|
${X11_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(kdeinit_kwin_rules_dialog ${kcm_libs} ${kwin_kcm_rules_XCB_LIBS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-04-01 16:42:27 +00:00
|
|
|
install(TARGETS kdeinit_kwin_rules_dialog ${INSTALL_TARGETS_DEFAULT_ARGS} )
|
2010-05-03 15:02:26 +00:00
|
|
|
install(TARGETS kwin_rules_dialog DESTINATION ${LIBEXEC_INSTALL_DIR} )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kcm_kwinrules_PART_SRCS kcm.cpp ${kwinrules_SRCS})
|
|
|
|
|
|
|
|
|
2013-11-15 12:37:47 +00:00
|
|
|
add_library(kcm_kwinrules MODULE ${kcm_kwinrules_PART_SRCS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-09-30 07:56:35 +00:00
|
|
|
target_link_libraries(kcm_kwinrules ${kcm_libs} ${kwin_kcm_rules_XCB_LIBS})
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
install(TARGETS kcm_kwinrules DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
|
|
|
install( FILES kwinrules.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|