summaryrefslogtreecommitdiffstats
path: root/konq-plugins
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2013-10-15 16:26:13 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-15 16:26:13 +0200
commit1a22301f46db807500b77119ae0132b9a3f876c5 (patch)
treeebf70d60bf7341685d1c4f6eb945e8d36baab9b2 /konq-plugins
parent6d9f2a4901eda474254a5d62a8c3701c2067ea58 (diff)
downloadtdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.tar.gz
tdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.zip
Initial cmake conversion
Diffstat (limited to 'konq-plugins')
-rw-r--r--konq-plugins/CMakeLists.txt36
-rw-r--r--konq-plugins/adblock/CMakeLists.txt29
-rw-r--r--konq-plugins/akregator/CMakeLists.txt46
-rw-r--r--konq-plugins/arkplugin/CMakeLists.txt33
-rw-r--r--konq-plugins/autorefresh/CMakeLists.txt34
-rw-r--r--konq-plugins/babelfish/CMakeLists.txt38
-rw-r--r--konq-plugins/crashes/CMakeLists.txt33
-rw-r--r--konq-plugins/dirfilter/CMakeLists.txt40
-rw-r--r--konq-plugins/domtreeviewer/CMakeLists.txt45
-rw-r--r--konq-plugins/fsview/CMakeLists.txt82
-rw-r--r--konq-plugins/imagerotation/CMakeLists.txt22
-rw-r--r--konq-plugins/kimgalleryplugin/CMakeLists.txt42
-rw-r--r--konq-plugins/kuick/CMakeLists.txt44
-rw-r--r--konq-plugins/kuick/kcmkuick/CMakeLists.txt29
-rw-r--r--konq-plugins/mediarealfolder/CMakeLists.txt18
-rw-r--r--konq-plugins/microformat/CMakeLists.txt33
-rw-r--r--konq-plugins/minitools/CMakeLists.txt34
-rw-r--r--konq-plugins/rellinks/CMakeLists.txt29
-rw-r--r--konq-plugins/rsync/CMakeLists.txt51
-rw-r--r--konq-plugins/searchbar/CMakeLists.txt31
-rw-r--r--konq-plugins/searchbar/icons/CMakeLists.txt12
-rw-r--r--konq-plugins/sidebar/CMakeLists.txt17
-rw-r--r--konq-plugins/sidebar/delicious/CMakeLists.txt41
-rw-r--r--konq-plugins/sidebar/delicious/pics/CMakeLists.txt4
-rw-r--r--konq-plugins/sidebar/mediaplayer/CMakeLists.txt47
-rw-r--r--konq-plugins/sidebar/mediaplayer/pics/CMakeLists.txt3
-rw-r--r--konq-plugins/sidebar/metabar/CMakeLists.txt3
-rw-r--r--konq-plugins/sidebar/metabar/src/CMakeLists.txt58
-rw-r--r--konq-plugins/sidebar/newsticker/CMakeLists.txt46
-rw-r--r--konq-plugins/sidebar/newsticker/pics/CMakeLists.txt4
-rw-r--r--konq-plugins/tdehtmlsettingsplugin/CMakeLists.txt33
-rw-r--r--konq-plugins/uachanger/CMakeLists.txt36
-rw-r--r--konq-plugins/validators/CMakeLists.txt38
-rw-r--r--konq-plugins/webarchiver/CMakeLists.txt51
34 files changed, 1142 insertions, 0 deletions
diff --git a/konq-plugins/CMakeLists.txt b/konq-plugins/CMakeLists.txt
new file mode 100644
index 0000000..52bdb7d
--- /dev/null
+++ b/konq-plugins/CMakeLists.txt
@@ -0,0 +1,36 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include( ${TDE_CMAKE_DIR}/libkonq.cmake )
+
+add_subdirectory( adblock )
+add_subdirectory( crashes )
+add_subdirectory( tdehtmlsettingsplugin )
+add_subdirectory( kimgalleryplugin )
+add_subdirectory( dirfilter )
+add_subdirectory( uachanger )
+add_subdirectory( babelfish )
+add_subdirectory( validators )
+add_subdirectory( domtreeviewer )
+add_subdirectory( webarchiver )
+add_subdirectory( sidebar )
+add_subdirectory( kuick )
+add_subdirectory( imagerotation )
+add_subdirectory( minitools )
+add_subdirectory( microformat )
+add_subdirectory( autorefresh )
+add_subdirectory( fsview )
+add_subdirectory( searchbar )
+add_subdirectory( arkplugin )
+add_subdirectory( akregator )
+add_subdirectory( rellinks )
+add_subdirectory( mediarealfolder )
+add_subdirectory( rsync )
diff --git a/konq-plugins/adblock/CMakeLists.txt b/konq-plugins/adblock/CMakeLists.txt
new file mode 100644
index 0000000..dee6a71
--- /dev/null
+++ b/konq-plugins/adblock/CMakeLists.txt
@@ -0,0 +1,29 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libadblock (kpart) ########################
+
+tde_add_kpart( libadblock AUTOMOC
+ SOURCES adblock.cpp adblockdialogue.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES plugin_adblock.rc plugin_adblock.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
diff --git a/konq-plugins/akregator/CMakeLists.txt b/konq-plugins/akregator/CMakeLists.txt
new file mode 100644
index 0000000..eede0bf
--- /dev/null
+++ b/konq-plugins/akregator/CMakeLists.txt
@@ -0,0 +1,46 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libakregatorkonqplugin (kpart) ############
+
+tde_add_kpart( libakregatorkonqplugin AUTOMOC
+ SOURCES akregatorplugin.cpp pluginbase.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### libakregatorkonqfeedicon (kpart) ##########
+
+tde_add_kpart( libakregatorkonqfeedicon AUTOMOC
+ SOURCES konqfeedicon.cpp feeddetector.cpp pluginbase.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES akregator_konqfeedicon.desktop akregator_konqfeedicon.rc
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES rss.png
+ DESTINATION ${DATA_INSTALL_DIR}/akregator/pics
+)
+
+install( FILES akregator_konqplugin.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
diff --git a/konq-plugins/arkplugin/CMakeLists.txt b/konq-plugins/arkplugin/CMakeLists.txt
new file mode 100644
index 0000000..17a2091
--- /dev/null
+++ b/konq-plugins/arkplugin/CMakeLists.txt
@@ -0,0 +1,33 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libarkplugin (kpart) ######################
+
+tde_add_kpart( libarkplugin AUTOMOC
+ SOURCES arkplugin.cpp
+ LINK konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES ark_plugin.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
+
+install( FILES arkplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/autorefresh/CMakeLists.txt b/konq-plugins/autorefresh/CMakeLists.txt
new file mode 100644
index 0000000..974fb76
--- /dev/null
+++ b/konq-plugins/autorefresh/CMakeLists.txt
@@ -0,0 +1,34 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libautorefresh (kpart) ####################
+
+tde_add_kpart( libautorefresh AUTOMOC
+ SOURCES autorefresh.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( autorefresh )
+
+
+##### other data ################################
+
+install( FILES autorefresh.rc autorefresh.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
diff --git a/konq-plugins/babelfish/CMakeLists.txt b/konq-plugins/babelfish/CMakeLists.txt
new file mode 100644
index 0000000..742a47a
--- /dev/null
+++ b/konq-plugins/babelfish/CMakeLists.txt
@@ -0,0 +1,38 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libbabelfishplugin (kpart) ################
+
+tde_add_kpart( libbabelfishplugin AUTOMOC
+ SOURCES plugin_babelfish.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( babelfish )
+
+
+##### other data ################################
+
+install( FILES plugin_babelfish.rc plugin_babelfish.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES plugin_babelfish.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/crashes/CMakeLists.txt b/konq-plugins/crashes/CMakeLists.txt
new file mode 100644
index 0000000..4c554b8
--- /dev/null
+++ b/konq-plugins/crashes/CMakeLists.txt
@@ -0,0 +1,33 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libcrashesplugin (kpart) ##################
+
+tde_add_kpart( libcrashesplugin AUTOMOC
+ SOURCES crashesplugin.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES crashesplugin.rc crashesplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES crashesplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/dirfilter/CMakeLists.txt b/konq-plugins/dirfilter/CMakeLists.txt
new file mode 100644
index 0000000..26147ca
--- /dev/null
+++ b/konq-plugins/dirfilter/CMakeLists.txt
@@ -0,0 +1,40 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+add_definitions(
+)
+
+
+##### libdirfilterplugin (kpart) ################
+
+tde_add_kpart( libdirfilterplugin AUTOMOC
+ SOURCES dirfilterplugin.cpp
+ LINK konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES dirfilterplugin.rc dirfilter_plugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqiconview/kpartplugins
+)
+
+install( FILES dirfilterplugin.rc dirfilter_plugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqlistview/kpartplugins
+)
+
+install( FILES dirfilterplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/domtreeviewer/CMakeLists.txt b/konq-plugins/domtreeviewer/CMakeLists.txt
new file mode 100644
index 0000000..af36d41
--- /dev/null
+++ b/konq-plugins/domtreeviewer/CMakeLists.txt
@@ -0,0 +1,45 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libdomtreeviewerplugin (kpart) ############
+
+tde_add_kpart( libdomtreeviewerplugin AUTOMOC
+ SOURCES plugin_domtreeviewer.cpp domtreeview.cpp domlistviewitem.cpp
+ domtreewindow.cpp domtreecommands.cpp signalreceiver.cpp domtreeviewbase.ui
+ attributeeditdialog.ui elementeditdialog.ui texteditdialog.ui
+ messagedialog.ui
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( domtreeviewer )
+
+
+##### other data ################################
+
+install( FILES plugin_domtreeviewer.rc plugin_domtreeviewer.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES domtreeviewerui.rc
+ DESTINATION ${DATA_INSTALL_DIR}/domtreeviewer
+)
+
+install( FILES plugin_domtreeviewer.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/fsview/CMakeLists.txt b/konq-plugins/fsview/CMakeLists.txt
new file mode 100644
index 0000000..2860015
--- /dev/null
+++ b/konq-plugins/fsview/CMakeLists.txt
@@ -0,0 +1,82 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### fsview (static) ###########################
+
+tde_add_library( fsview STATIC_PIC AUTOMOC
+ SOURCES treemap.cpp fsview.cpp scan.cpp inode.cpp
+)
+
+
+##### fsview (executable) #######################
+
+tde_add_executable( fsview AUTOMOC
+ SOURCES main.cpp
+ LINK tdeio-shared fsview-static
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+
+##### scantest (test) ###########################
+# FIXME: replace this after adding specific tde macro
+if( WITH_TEST )
+ tde_add_executable( scantest
+ SOURCES scantest.cpp
+ LINK tdeio-shared fsview-static )
+
+ set_property( SOURCE scantest.cpp APPEND
+ PROPERTY COMPILE_DEFINITIONS
+ FSVIEW_SCANTEST_DIRECTORY="${CMAKE_BINARY_DIR}" )
+
+ add_test( scantest ${CMAKE_CURRENT_BINARY_DIR}/scantest )
+endif( WITH_TEST )
+
+
+##### libfsviewpart (kpart) #####################
+
+tde_add_kpart( libfsviewpart AUTOMOC
+ SOURCES fsview_part.cpp
+ LINK tdeio-shared konq-shared fsview-static
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( fsview )
+
+
+##### other data ################################
+
+install( FILES fsview_part.rc
+ DESTINATION ${DATA_INSTALL_DIR}/fsview
+)
+
+install( FILES fsview_part.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
+
+install( FILES fsview.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/imagerotation/CMakeLists.txt b/konq-plugins/imagerotation/CMakeLists.txt
new file mode 100644
index 0000000..32ec11b
--- /dev/null
+++ b/konq-plugins/imagerotation/CMakeLists.txt
@@ -0,0 +1,22 @@
+#################################################
+#
+# (C) 2013 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( PROGRAMS exif.py orient.py
+ DESTINATION ${DATA_INSTALL_DIR}/imagerotation
+)
+
+install( PROGRAMS jpegorient
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+install( FILES jpegorient.desktop imageconverter.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqueror/servicemenus
+)
diff --git a/konq-plugins/kimgalleryplugin/CMakeLists.txt b/konq-plugins/kimgalleryplugin/CMakeLists.txt
new file mode 100644
index 0000000..5190e00
--- /dev/null
+++ b/konq-plugins/kimgalleryplugin/CMakeLists.txt
@@ -0,0 +1,42 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libkimgallery (kpart) #####################
+
+tde_add_kpart( libkimgallery AUTOMOC
+ SOURCES imgalleryplugin.cpp imgallerydialog.cpp
+ LINK konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( imagegallery )
+
+
+##### other data ################################
+
+install( FILES kimgalleryplugin.rc kimgalleryplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqiconview/kpartplugins
+)
+
+install( FILES kimgalleryplugin.rc kimgalleryplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqlistview/kpartplugins
+)
+
+install( FILES kimgalleryplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/kuick/CMakeLists.txt b/konq-plugins/kuick/CMakeLists.txt
new file mode 100644
index 0000000..3ef0e00
--- /dev/null
+++ b/konq-plugins/kuick/CMakeLists.txt
@@ -0,0 +1,44 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( kcmkuick )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libkuickplugin (kpart) ####################
+
+tde_add_kpart( libkuickplugin AUTOMOC
+ SOURCES kuick_plugin.cpp kdirmenu.cpp kmetamenu.cpp kimcontactmenu.cpp
+ LINK tdeabc-shared konq-shared tdeimproxy-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES kuick_plugin.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
+
+install( FILES kuickplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/kuick/kcmkuick/CMakeLists.txt b/konq-plugins/kuick/kcmkuick/CMakeLists.txt
new file mode 100644
index 0000000..f953e7f
--- /dev/null
+++ b/konq-plugins/kuick/kcmkuick/CMakeLists.txt
@@ -0,0 +1,29 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kcm_kuick (kpart) #########################
+
+tde_add_kpart( kcm_kuick AUTOMOC
+ SOURCES kcmkuick.cpp kcmkuickdialog.ui
+ LINK tdeio-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES kcmkuick.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/mediarealfolder/CMakeLists.txt b/konq-plugins/mediarealfolder/CMakeLists.txt
new file mode 100644
index 0000000..8e0740a
--- /dev/null
+++ b/konq-plugins/mediarealfolder/CMakeLists.txt
@@ -0,0 +1,18 @@
+#################################################
+#
+# (C) 2013 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( PROGRAMS tdeio_media_realfolder
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+install( FILES media_realfolder.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqueror/servicemenus
+)
diff --git a/konq-plugins/microformat/CMakeLists.txt b/konq-plugins/microformat/CMakeLists.txt
new file mode 100644
index 0000000..5d2d239
--- /dev/null
+++ b/konq-plugins/microformat/CMakeLists.txt
@@ -0,0 +1,33 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libmfkonqmficon (kpart) ###################
+
+tde_add_kpart( libmfkonqmficon AUTOMOC
+ SOURCES konqmficon.cpp pluginbase.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES mf_konqmficon.desktop mf_konqmficon.rc
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES microformat.png
+ DESTINATION ${DATA_INSTALL_DIR}/microformat/pics
+)
diff --git a/konq-plugins/minitools/CMakeLists.txt b/konq-plugins/minitools/CMakeLists.txt
new file mode 100644
index 0000000..ec4904c
--- /dev/null
+++ b/konq-plugins/minitools/CMakeLists.txt
@@ -0,0 +1,34 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libminitoolsplugin (kpart) ################
+
+tde_add_kpart( libminitoolsplugin AUTOMOC
+ SOURCES minitoolsplugin.cpp
+ LINK tdehtml-shared konq-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( )
+
+
+##### other data ################################
+
+install( FILES minitoolsplugin.rc minitoolsplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
diff --git a/konq-plugins/rellinks/CMakeLists.txt b/konq-plugins/rellinks/CMakeLists.txt
new file mode 100644
index 0000000..0299370
--- /dev/null
+++ b/konq-plugins/rellinks/CMakeLists.txt
@@ -0,0 +1,29 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### librellinksplugin (kpart) #################
+
+tde_add_kpart( librellinksplugin AUTOMOC
+ SOURCES plugin_rellinks.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES plugin_rellinks.rc plugin_rellinks.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
diff --git a/konq-plugins/rsync/CMakeLists.txt b/konq-plugins/rsync/CMakeLists.txt
new file mode 100644
index 0000000..697fd75
--- /dev/null
+++ b/konq-plugins/rsync/CMakeLists.txt
@@ -0,0 +1,51 @@
+#################################################
+#
+# (C) 2013 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### librsyncplugin (kpart) ####################
+
+tde_add_kpart( librsyncplugin AUTOMOC
+ SOURCES rsyncplugin.cpp
+ LINK konq-shared tdersync-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( )
+
+
+##### other data ################################
+
+install( FILES rsyncplugin.rc rsync_plugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqiconview/kpartplugins
+)
+
+install( FILES rsyncplugin.rc rsync_plugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqlistview/kpartplugins
+)
+
+install( FILES rsyncplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/searchbar/CMakeLists.txt b/konq-plugins/searchbar/CMakeLists.txt
new file mode 100644
index 0000000..7558bc4
--- /dev/null
+++ b/konq-plugins/searchbar/CMakeLists.txt
@@ -0,0 +1,31 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+add_subdirectory( icons )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libsearchbarplugin (kpart) ################
+
+tde_add_kpart( libsearchbarplugin AUTOMOC
+ SOURCES searchbar.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES searchbar.rc searchbar.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqueror/kpartplugins
+)
diff --git a/konq-plugins/searchbar/icons/CMakeLists.txt b/konq-plugins/searchbar/icons/CMakeLists.txt
new file mode 100644
index 0000000..a038561
--- /dev/null
+++ b/konq-plugins/searchbar/icons/CMakeLists.txt
@@ -0,0 +1,12 @@
+#################################################
+#
+# (C) 2013 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/konqueror/icons )
diff --git a/konq-plugins/sidebar/CMakeLists.txt b/konq-plugins/sidebar/CMakeLists.txt
new file mode 100644
index 0000000..17a761a
--- /dev/null
+++ b/konq-plugins/sidebar/CMakeLists.txt
@@ -0,0 +1,17 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include( ${TDE_CMAKE_DIR}/konqueror.cmake )
+
+add_subdirectory( newsticker )
+add_subdirectory( delicious )
+add_subdirectory( metabar )
+tde_conditional_add_subdirectory( WITH_ARTS mediaplayer )
diff --git a/konq-plugins/sidebar/delicious/CMakeLists.txt b/konq-plugins/sidebar/delicious/CMakeLists.txt
new file mode 100644
index 0000000..503222e
--- /dev/null
+++ b/konq-plugins/sidebar/delicious/CMakeLists.txt
@@ -0,0 +1,41 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( pics )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### konqsidebar_delicious (kpart) #############
+
+tde_add_kpart( konqsidebar_delicious AUTOMOC
+ SOURCES plugin.cpp widget.ui mainWidget.cpp plugin.skel tagListItem.cpp
+ bookmarkListItem.cpp
+ LINK konq-shared konqsidebarplugin-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES delicious_add.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqsidebartng/add
+)
diff --git a/konq-plugins/sidebar/delicious/pics/CMakeLists.txt b/konq-plugins/sidebar/delicious/pics/CMakeLists.txt
new file mode 100644
index 0000000..59415bb
--- /dev/null
+++ b/konq-plugins/sidebar/delicious/pics/CMakeLists.txt
@@ -0,0 +1,4 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+tde_install_icons( )
+
diff --git a/konq-plugins/sidebar/mediaplayer/CMakeLists.txt b/konq-plugins/sidebar/mediaplayer/CMakeLists.txt
new file mode 100644
index 0000000..e5ad6e3
--- /dev/null
+++ b/konq-plugins/sidebar/mediaplayer/CMakeLists.txt
@@ -0,0 +1,47 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( pics )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${ARTS_INCLUDE_DIRS}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${ARTS_LIBRARY_DIRS}
+)
+
+
+##### konqsidebar_mediaplayer (kpart) ###########
+
+tde_add_kpart( konqsidebar_mediaplayer AUTOMOC
+ SOURCES mediawidget_skel.ui engine.cpp player.cpp mediawidget.cpp
+ mediaplayer.cpp controls.cpp
+ LINK artskde-shared konq-shared konqsidebarplugin-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES mediaplayerplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
+
+install( FILES mplayer_add.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqsidebartng/add
+)
diff --git a/konq-plugins/sidebar/mediaplayer/pics/CMakeLists.txt b/konq-plugins/sidebar/mediaplayer/pics/CMakeLists.txt
new file mode 100644
index 0000000..562ec30
--- /dev/null
+++ b/konq-plugins/sidebar/mediaplayer/pics/CMakeLists.txt
@@ -0,0 +1,3 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+tde_install_icons( )
diff --git a/konq-plugins/sidebar/metabar/CMakeLists.txt b/konq-plugins/sidebar/metabar/CMakeLists.txt
new file mode 100644
index 0000000..89707dc
--- /dev/null
+++ b/konq-plugins/sidebar/metabar/CMakeLists.txt
@@ -0,0 +1,3 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+add_subdirectory( src )
diff --git a/konq-plugins/sidebar/metabar/src/CMakeLists.txt b/konq-plugins/sidebar/metabar/src/CMakeLists.txt
new file mode 100644
index 0000000..c5a18d1
--- /dev/null
+++ b/konq-plugins/sidebar/metabar/src/CMakeLists.txt
@@ -0,0 +1,58 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TDE_INCLUDE_DIR}/dom
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### konqsidebar_metabar (kpart) ###############
+
+tde_add_kpart( konqsidebar_metabar AUTOMOC
+ SOURCES metabar.cpp metabarwidget.cpp configdialog.cpp serviceloader.cpp
+ defaultplugin.cpp protocolplugin.cpp settingsplugin.cpp remoteplugin.cpp
+ httpplugin.cpp metabarfunctions.cpp
+ LINK tdehtml-shared konq-shared konqsidebarplugin-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( )
+
+
+##### other data ################################
+
+install( FILES metabar_add.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqsidebartng/add
+)
+
+install( FILES default.css layout.html
+ DESTINATION ${DATA_INSTALL_DIR}/metabar/themes/default
+)
+
+install( FILES iconsrc
+ DESTINATION ${DATA_INSTALL_DIR}/metabar
+)
+
+install( FILES metabar.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqsidebartng/entries
+)
diff --git a/konq-plugins/sidebar/newsticker/CMakeLists.txt b/konq-plugins/sidebar/newsticker/CMakeLists.txt
new file mode 100644
index 0000000..43e28f6
--- /dev/null
+++ b/konq-plugins/sidebar/newsticker/CMakeLists.txt
@@ -0,0 +1,46 @@
+#################################################
+#
+# (C) 2013 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( pics )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### konq_sidebarnews (kpart) ##################
+
+tde_add_kpart( konq_sidebarnews AUTOMOC
+ SOURCES sidebar_news.cpp sidebar_news.skel nsstacktabwidget.cpp nspanel.cpp
+ nspanel.skel norsswidget.cpp sidebarsettings.kcfgc configfeedsbase.ui
+ configfeeds.cpp
+ LINK konq-shared konqsidebarplugin-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES news_add.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/konqsidebartng/add
+)
+
+install( FILES konq_sidebarnews.kcfg
+ DESTINATION ${KCFG_INSTALL_DIR}
+)
diff --git a/konq-plugins/sidebar/newsticker/pics/CMakeLists.txt b/konq-plugins/sidebar/newsticker/pics/CMakeLists.txt
new file mode 100644
index 0000000..59415bb
--- /dev/null
+++ b/konq-plugins/sidebar/newsticker/pics/CMakeLists.txt
@@ -0,0 +1,4 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+tde_install_icons( )
+
diff --git a/konq-plugins/tdehtmlsettingsplugin/CMakeLists.txt b/konq-plugins/tdehtmlsettingsplugin/CMakeLists.txt
new file mode 100644
index 0000000..3c5d02b
--- /dev/null
+++ b/konq-plugins/tdehtmlsettingsplugin/CMakeLists.txt
@@ -0,0 +1,33 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libtdehtmlsettingsplugin (kpart) ##########
+
+tde_add_kpart( libtdehtmlsettingsplugin AUTOMOC
+ SOURCES settingsplugin.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES tdehtmlsettingsplugin.rc tdehtmlsettingsplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES tdehtmlsettingsplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/uachanger/CMakeLists.txt b/konq-plugins/uachanger/CMakeLists.txt
new file mode 100644
index 0000000..97a4b23
--- /dev/null
+++ b/konq-plugins/uachanger/CMakeLists.txt
@@ -0,0 +1,36 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+add_definitions(
+)
+
+
+##### libuachangerplugin (kpart) ################
+
+tde_add_kpart( libuachangerplugin AUTOMOC
+ SOURCES uachangerplugin.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES uachangerplugin.rc uachangerplugin.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES uachangerplugin.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/validators/CMakeLists.txt b/konq-plugins/validators/CMakeLists.txt
new file mode 100644
index 0000000..3a267be
--- /dev/null
+++ b/konq-plugins/validators/CMakeLists.txt
@@ -0,0 +1,38 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libvalidatorsplugin (kpart) ###############
+
+tde_add_kpart( libvalidatorsplugin AUTOMOC
+ SOURCES plugin_validators.cpp validatorsdialog.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( validators cssvalidator htmlvalidator )
+
+
+##### other data ################################
+
+install( FILES plugin_validators.rc plugin_validators.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES plugin_validators.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)
diff --git a/konq-plugins/webarchiver/CMakeLists.txt b/konq-plugins/webarchiver/CMakeLists.txt
new file mode 100644
index 0000000..b017269
--- /dev/null
+++ b/konq-plugins/webarchiver/CMakeLists.txt
@@ -0,0 +1,51 @@
+# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### libwebarchiverplugin (kpart) ##############
+
+tde_add_kpart( libwebarchiverplugin AUTOMOC
+ SOURCES plugin_webarchiver.cpp archiveviewbase.ui archivedialog.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### webarchivethumbnail (kpart) ###############
+
+tde_add_kpart( webarchivethumbnail AUTOMOC
+ SOURCES webarchivecreator.cpp
+ LINK tdehtml-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( webarchiver )
+
+
+##### other data ################################
+
+install( FILES plugin_webarchiver.rc plugin_webarchiver.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/tdehtml/kpartplugins
+)
+
+install( FILES webarchivethumbnail.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
+
+install( FILES plugin_webarchiver.desktop
+ DESTINATION ${APPS_INSTALL_DIR}/.hidden
+)