1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
include_directories(
${CHOQOK_INCLUDES}
)
set(choqok_quickfilter_PART_SRCS
quickfilter.cpp
)
add_library(choqok_quickfilter MODULE ${choqok_quickfilter_PART_SRCS})
kcoreaddons_desktop_to_json(choqok_quickfilter choqok_quickfilter.desktop)
target_link_libraries(choqok_quickfilter
PUBLIC
Qt5::Core
Qt5::Widgets
KF5::CoreAddons
KF5::I18n
KF5::XmlGui
choqok
)
install(TARGETS choqok_quickfilter DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES choqok_quickfilter.desktop DESTINATION ${SERVICES_INSTALL_DIR})
install(FILES quickfilterui.rc DESTINATION ${KXMLGUI_INSTALL_DIR}/choqok_quickfilter)
|