|
From: Lasse Kärkkäi. <tr...@us...> - 2009-07-06 01:29:44
|
Module: performous
Branch: master
Commit: 65dcc05989d62f369c40b746b7730d26aa9701bd
Author: Lasse Karkkainen <tro...@tr...>
Date: Mon Jul 6 04:26:01 2009 +0300
Install the XSL files for songlist conversion.
---
data/CMakeLists.txt | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
index 80942d2..da43afc 100644
--- a/data/CMakeLists.txt
+++ b/data/CMakeLists.txt
@@ -3,8 +3,13 @@ set(PIXMAP_FILE "performous.xpm")
set(CONFIG_FILE "performous.xml")
if(UNIX)
- install(FILES "${APPLICATION_FILE}" DESTINATION "share/applications/")
- install(FILES "${PIXMAP_FILE}" DESTINATION "share/pixmaps")
+ install(FILES ${APPLICATION_FILE} DESTINATION "share/applications/")
+ install(FILES ${PIXMAP_FILE} DESTINATION "share/pixmaps")
+ install(FILES ${PIXMAP_FILE} DESTINATION "share/pixmaps")
endif(UNIX)
-install(FILES "${CONFIG_FILE}" DESTINATION "${CMAKE_INSTALL_PREFIX}/${SHARE_INSTALL}/config/")
+install(FILES ${CONFIG_FILE} DESTINATION "${CMAKE_INSTALL_PREFIX}/${SHARE_INSTALL}/config/")
+
+file(GLOB XSL_FILES "*.xsl")
+install(FILES ${XSL_FILES} DESTINATION "${CMAKE_INSTALL_PREFIX}/${SHARE_INSTALL}/xsl/")
+
|