summaryrefslogtreecommitdiffstats
path: root/kde
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-11 04:11:27 +0900
committerMichele Calgaro <[email protected]>2024-03-05 19:29:58 +0900
commitdceb004c9be27e6596151cf9165de2989989154b (patch)
treee0fc66f0d32395725264b75b002ebf946a292013 /kde
parentbabd37358dba926a68da1fc385d2229e21d77dd9 (diff)
downloadtde-guidance-dceb004c9be27e6596151cf9165de2989989154b.tar.gz
tde-guidance-dceb004c9be27e6596151cf9165de2989989154b.zip
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]> Signed-off-by: Slávek Banko <[email protected]> (cherry picked from commit 95f2a2d8b59e13dcdcd7e58ed4ec8553f039b45e)
Diffstat (limited to 'kde')
-rw-r--r--kde/CMakeLists.txt37
1 files changed, 37 insertions, 0 deletions
diff --git a/kde/CMakeLists.txt b/kde/CMakeLists.txt
new file mode 100644
index 0000000..6f2fa92
--- /dev/null
+++ b/kde/CMakeLists.txt
@@ -0,0 +1,37 @@
+
+##### png files
+
+file( GLOB _png_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*/pics/*.png )
+
+install(
+ FILES ${_png_files}
+ DESTINATION ${DATA_INSTALL_DIR}/guidance/pics
+)
+
+
+##### icon files
+
+file( GLOB _icons16_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*/pics/16x16/*.png )
+
+install(
+ FILES ${_icons16_files}
+ DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/16x16/apps
+)
+
+install(
+ FILES serviceconfig/pics/hi32-app-daemons.png
+ DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
+ RENAME daemons.png
+)
+
+install(
+ FILES mountconfig/pics/kcmpartitions.png
+ DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
+ RENAME disksfilesystems.png
+)
+
+install(
+ FILES userconfig/pics/hi32-user.png
+ DESTINATION ${ICON_INSTALL_DIR}/crystalsvg/32x32/apps
+ RENAME userconfig.png
+)