kde-workspace/kfind/CMakeLists.txt
Ivailo Monev 88db934aa7 generic: use the new karchive library
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-10-06 16:56:10 +03:00

35 lines
577 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}
)
kde4_install_icons(${KDE4_ICON_INSTALL_DIR})