kde-workspace/kfind/CMakeLists.txt
Ivailo Monev 568ecf8cd3 kfind: add KonqPopupMenu/Plugin service file
kfind can perform much more fine grained searched than what the dolphin
KIO slave does - it has case-sensitivity, MIME type, modification time,
owner (user and group) options and more

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-12-16 08:57:44 +02:00

40 lines
674 B
CMake

include_directories(
${CMAKE_SOURCE_DIR}/libs/konq
${CMAKE_BINARY_DIR}/libs/konq
)
set(kfind_SRCS
main.cpp
kfinddlg.cpp
kftabdlg.cpp
kquery.cpp
kdatecombo.cpp
kfindtreeview.cpp
)
add_executable(kfind ${kfind_SRCS})
target_link_libraries(kfind
${KDE4_KFILE_LIBS}
${KDE4_KARCHIVE_LIBS}
konq
)
install(
TARGETS kfind
${INSTALL_TARGETS_DEFAULT_ARGS}
)
########### install files ###############
install(
PROGRAMS kfind.desktop
DESTINATION ${KDE4_XDG_APPS_INSTALL_DIR}
)
install(
FILES findhere.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}/ServiceMenus
)
kde4_install_icons(${KDE4_ICON_INSTALL_DIR})