From 6787ec05f719d2a47bb3ad1a4a036c6a0cad7cb6 Mon Sep 17 00:00:00 2001 From: Kornel Benko Date: Tue, 17 Mar 2015 20:46:02 +0100 Subject: [PATCH] Cmake build: Add .svgz files to Resources. It does not seam to make a difference. Added because other icons are also included. --- .../cmake/scripts/LyXCreateImagesResource.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/development/cmake/scripts/LyXCreateImagesResource.cmake b/development/cmake/scripts/LyXCreateImagesResource.cmake index ead1e4af1e..2c68b3b5b1 100644 --- a/development/cmake/scripts/LyXCreateImagesResource.cmake +++ b/development/cmake/scripts/LyXCreateImagesResource.cmake @@ -25,7 +25,7 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # To call this script, one has to provide following parameters -# IMAGES_DIR # root for the directory-tree for .png and .git image files +# IMAGES_DIR # root for the directory-tree for .png, .svgz and .git image files # RESOURCE_NAME # full path of the resulting resource-file # MAPPED_DIR # Path-prefix to be removed from the file name entries @@ -47,13 +47,13 @@ endif() file(GLOB_RECURSE images_png ${IMAGES_DIR}/*.png) file(GLOB_RECURSE images_gif ${IMAGES_DIR}/*.gif) +file(GLOB_RECURSE images_svgz ${IMAGES_DIR}/*.svgz) -set(images ${images_png} ${images_gif}) +set(images ${images_png} ${images_gif} ${images_svgz}) file(REMOVE ${RESOURCE_NAME}) - if(EXISTS ${RESOURCE_NAME}) - message(FATAL_ERROR "Cannot remove file ${RESOURCE_NAME}") - endif() +if(EXISTS ${RESOURCE_NAME}) + message(FATAL_ERROR "Cannot remove file ${RESOURCE_NAME}") endif() file(WRITE ${RESOURCE_NAME} "\n") -- 2.39.5