dolphin/kfind/CMakeLists.txt
Oswald Buddenhagen d8276923fc actually install the .desktop files as executables
changing merely the file permissions is the repo is quite a noop as far
as cmake is concerned.


svn path=/trunk/KDE/kdebase/apps/; revision=1187438
2010-10-19 12:44:48 +00:00

21 lines
533 B
CMake

set(kfind_SRCS main.cpp
kfinddlg.cpp
kftabdlg.cpp
kquery.cpp
kdatecombo.cpp
kfindtreeview.cpp)
kde4_add_app_icon(kfind_SRCS "hi*-app-kfind.png")
kde4_add_executable(kfind ${kfind_SRCS})
target_link_libraries(kfind konq ${KDE4_KFILE_LIBS})
install(TARGETS kfind ${INSTALL_TARGETS_DEFAULT_ARGS})
########### install files ###############
install( PROGRAMS kfind.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
kde4_install_icons( ${ICON_INSTALL_DIR} )