mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
35 lines
551 B
Text
35 lines
551 B
Text
![]() |
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}
|
||
|
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})
|