Fleshing out installation.

This commit is contained in:
Jim Evins
2017-02-26 15:07:44 -05:00
parent 62a87a5b03
commit 95467b6ed2
13 changed files with 319 additions and 16 deletions
+61
View File
@@ -0,0 +1,61 @@
cmake_minimum_required (VERSION 2.8.12)
###############################################################################
# gLabels templates subproject
###############################################################################
project (templates)
#=======================================
# Template Files
#=======================================
set (template_dtd glabels-3.0.dtd)
set (template_files
ascom-iso-templates.xml
avery-iso-templates.xml
avery-other-templates.xml
avery-us-templates.xml
begalabel-templates.xml
brother-other-templates.xml
cablelabel-templates.xml
canon-other-templates.xml
databecker-iso-templates.xml
dataline-iso-templates.xml
decadry-iso-templates.xml
desmat-templates.xml
dymo-other-templates.xml
endisch-templates.xml
geha-iso-templates.xml
hama-iso-templates.xml
herma-iso-templates.xml
hisago-templates.xml
igepa-templates.xml
jac-iso-templates.xml
maco-us-templates.xml
mayspies-templates.xml
meritline-us-templates.xml
microapp-templates.xml
misc-iso-templates.xml
misc-other-templates.xml
misc-us-templates.xml
online-templates.xml
pearl-iso-templates.xml
rayfilm-templates.xml
sheetlabels-us-templates.xml
uline-us-templates.xml
worldlabel-us-templates.xml
zweckform-iso-templates.xml
)
set (other_db_files
categories.xml
paper-sizes.xml
vendors.xml
)
#=======================================
# Install
#=======================================
install (FILES ${template_dtd} DESTINATION share/glabels-qt/templates)
install (FILES ${template_files} DESTINATION share/glabels-qt/templates)
install (FILES ${other_db_files} DESTINATION share/glabels-qt/templates)