summaryrefslogtreecommitdiffstats
path: root/xslt
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-09-18 20:59:45 +0200
committerSlávek Banko <slavek.banko@axis.cz>2016-09-18 20:59:45 +0200
commit3f7006b6807add37a3de957c525600a31424a498 (patch)
treec0a1c00a80c3ec28c7f38da2e5e91ff6e3a385be /xslt
parent3fbf943ee75e74a85c489508303987cfd5f8ea01 (diff)
downloadtellico-3f7006b6807add37a3de957c525600a31424a498.tar.gz
tellico-3f7006b6807add37a3de957c525600a31424a498.zip
Initial cmake conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'xslt')
-rw-r--r--xslt/CMakeLists.txt57
-rw-r--r--xslt/entry-templates/CMakeLists.txt19
-rw-r--r--xslt/report-templates/CMakeLists.txt26
3 files changed, 102 insertions, 0 deletions
diff --git a/xslt/CMakeLists.txt b/xslt/CMakeLists.txt
new file mode 100644
index 0000000..34e0d23
--- /dev/null
+++ b/xslt/CMakeLists.txt
@@ -0,0 +1,57 @@
+#################################################
+#
+# (C) 2016 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+
+##### other data ################################
+install(
+ FILES
+ tellico-printing.xsl
+ tellico-by-author.xsl
+ tellico-by-title.xsl
+ tellico2html.xsl
+ shadowAlpha.png
+ cassette-logo.png
+ cd-logo.png
+ dvd-logo.png
+ record-logo.png
+ vhs-logo.png
+ tellico-common.xsl
+ mods2tellico.xsl
+ amazon2tellico.xsl
+ MARC21slim2MODS3.xsl
+ MARC21slimUtils.xsl
+ pubmed2tellico.xsl
+ tellico2onix.xsl
+ UNIMARC2MODS3.xsl
+ tellico2html.js
+ yahoo2tellico.xsl
+ isbndb2tellico.xsl
+ bluray-logo.png
+ hddvd-logo.png
+ gcstar2tellico.xsl
+ xmp2tellico.xsl
+ crossref2tellico.xsl
+ arxiv2tellico.xsl
+ referencer2tellico.xsl
+ delicious2tellico.xsl
+ welcome.html
+ unixref2tellico.xsl
+ discogs2tellico.xsl
+ tellico2gcstar.xsl
+ DESTINATION
+ ${DATA_INSTALL_DIR}/${CMAKE_PROJECT_NAME}
+)
+
+
+##### directories ###############################
+
+add_subdirectory( entry-templates )
+add_subdirectory( report-templates )
diff --git a/xslt/entry-templates/CMakeLists.txt b/xslt/entry-templates/CMakeLists.txt
new file mode 100644
index 0000000..150b09e
--- /dev/null
+++ b/xslt/entry-templates/CMakeLists.txt
@@ -0,0 +1,19 @@
+#################################################
+#
+# (C) 2016 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+
+##### other data ################################
+install(
+ FILES
+ Default.xsl Video.xsl Album.xsl Fancy.xsl Compact.xsl
+ DESTINATION
+ ${DATA_INSTALL_DIR}/${CMAKE_PROJECT_NAME}/entry-templates
+)
diff --git a/xslt/report-templates/CMakeLists.txt b/xslt/report-templates/CMakeLists.txt
new file mode 100644
index 0000000..6b26f33
--- /dev/null
+++ b/xslt/report-templates/CMakeLists.txt
@@ -0,0 +1,26 @@
+#################################################
+#
+# (C) 2016 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+
+##### other data ################################
+install(
+ FILES
+ Column_View.xsl
+ "Title_Listing_(Horizontal).xsl"
+ "Title_Listing_(Vertical).xsl"
+ Group_View.xsl
+ Image_List.xsl
+ Loan_View.xsl
+ Group_Summary.xsl
+ Tri-Column.xsl
+ DESTINATION
+ ${DATA_INSTALL_DIR}/${CMAKE_PROJECT_NAME}/report-templates
+)