blob: 1c1611ecf4de46b8d9457e3ac932328487a131f8 (
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 .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()
|