mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
35 lines
577 B
CMake
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})
|