diff options
author | Mavridis Philippe <mavridisf@gmail.com> | 2024-09-30 00:04:56 +0300 |
---|---|---|
committer | Philippe Mavridis <philippe.mavridis@yandex.com> | 2025-05-15 21:00:25 +0300 |
commit | 04e86613f67d171cc965fce64a4310c0d25c98e1 (patch) | |
tree | 08a85d43bc40568f94259601339ccd7e1de11773 /templates/CMakeLists.txt | |
parent | cf85b9c285a2b9baa87c9d0cb9d683b48e82a475 (diff) | |
download | koffice-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 'templates/CMakeLists.txt')
-rw-r--r-- | templates/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/CMakeLists.txt b/templates/CMakeLists.txt new file mode 100644 index 000000000..5c3b7f4fb --- /dev/null +++ b/templates/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 + Presentation.desktop TextDocument.desktop SpreadSheet.desktop + Illustration.desktop + DESTINATION ${TEMPLATES_INSTALL_DIR} +) + +install( + FILES Presentation.kpt TextDocument.kwt SpreadSheet.kst Illustration.karbon + DESTINATION ${TEMPLATES_INSTALL_DIR}/.source +)
\ No newline at end of file |