blob: 5c3b7f4fb498cd48112a9d9295bf05b0ea7b08a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
)
|