summaryrefslogtreecommitdiffstats
path: root/kword/templates
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2024-09-30 00:04:56 +0300
committerPhilippe Mavridis <philippe.mavridis@yandex.com>2025-05-15 21:00:25 +0300
commit04e86613f67d171cc965fce64a4310c0d25c98e1 (patch)
tree08a85d43bc40568f94259601339ccd7e1de11773 /kword/templates
parentcf85b9c285a2b9baa87c9d0cb9d683b48e82a475 (diff)
downloadkoffice-feat/cmake-port.tar.gz
koffice-feat/cmake-port.zip
WIP: CMake portfeat/cmake-port
Signed-off-by: Philippe Mavridis <philippe.mavridis@yandex.com>
Diffstat (limited to 'kword/templates')
-rw-r--r--kword/templates/CMakeLists.txt10
-rw-r--r--kword/templates/CardsAndLabels/CMakeLists.txt22
-rw-r--r--kword/templates/Envelopes/CMakeLists.txt22
-rw-r--r--kword/templates/Wordprocessing/CMakeLists.txt22
4 files changed, 76 insertions, 0 deletions
diff --git a/kword/templates/CMakeLists.txt b/kword/templates/CMakeLists.txt
new file mode 100644
index 000000000..61ba22d22
--- /dev/null
+++ b/kword/templates/CMakeLists.txt
@@ -0,0 +1,10 @@
+###############################################################################
+# Trinity KOffice #
+# --------------- #
+# This file is licensed under the terms of GNU GPL v3 or later. #
+# Improvements and feedback are welcome. #
+###############################################################################
+
+add_subdirectory(CardsAndLabels)
+add_subdirectory(Envelopes)
+add_subdirectory(Wordprocessing) \ No newline at end of file
diff --git a/kword/templates/CardsAndLabels/CMakeLists.txt b/kword/templates/CardsAndLabels/CMakeLists.txt
new file mode 100644
index 000000000..2cc740141
--- /dev/null
+++ b/kword/templates/CardsAndLabels/CMakeLists.txt
@@ -0,0 +1,22 @@
+###############################################################################
+# Trinity KOffice #
+# --------------- #
+# This file is licensed under the terms of GNU GPL v3 or later. #
+# Improvements and feedback are welcome. #
+###############################################################################
+
+set(TEMPLATE_SUBDIR "CardsAndLabels")
+file(GLOB DESKTOP_FILES *.desktop)
+file(GLOB KWORD_TEMPLATES *.kwt)
+
+install(
+ FILES .directory ${DESKTOP_FILES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}
+)
+
+install(
+ FILES ${KWORD_TEMPLATES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}/.source
+)
+
+tde_install_icons() \ No newline at end of file
diff --git a/kword/templates/Envelopes/CMakeLists.txt b/kword/templates/Envelopes/CMakeLists.txt
new file mode 100644
index 000000000..47ae2fc40
--- /dev/null
+++ b/kword/templates/Envelopes/CMakeLists.txt
@@ -0,0 +1,22 @@
+###############################################################################
+# Trinity KOffice #
+# --------------- #
+# This file is licensed under the terms of GNU GPL v3 or later. #
+# Improvements and feedback are welcome. #
+###############################################################################
+
+set(TEMPLATE_SUBDIR "Envelopes")
+file(GLOB DESKTOP_FILES *.desktop)
+file(GLOB KWORD_TEMPLATES *.kwt)
+
+install(
+ FILES .directory ${DESKTOP_FILES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}
+)
+
+install(
+ FILES ${KWORD_TEMPLATES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}/.source
+)
+
+tde_install_icons() \ No newline at end of file
diff --git a/kword/templates/Wordprocessing/CMakeLists.txt b/kword/templates/Wordprocessing/CMakeLists.txt
new file mode 100644
index 000000000..1c1611ecf
--- /dev/null
+++ b/kword/templates/Wordprocessing/CMakeLists.txt
@@ -0,0 +1,22 @@
+###############################################################################
+# Trinity KOffice #
+# --------------- #
+# This file is licensed under the terms of GNU GPL v3 or later. #
+# Improvements and feedback are welcome. #
+###############################################################################
+
+set(TEMPLATE_SUBDIR "Normal")
+file(GLOB DESKTOP_FILES *.desktop)
+file(GLOB KWORD_TEMPLATES *.kwt)
+
+install(
+ FILES .directory ${DESKTOP_FILES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}
+)
+
+install(
+ FILES ${KWORD_TEMPLATES}
+ DESTINATION ${DATA_INSTALL_DIR}/kword/templates/${TEMPLATE_SUBDIR}/.source
+)
+
+tde_install_icons() \ No newline at end of file