From cba3ea286e85a0fde2758e4fe2aad9a3964a1ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 16 Dec 2018 05:56:22 +0100 Subject: [PATCH] Install application specific icons in the application directory. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- src/icons/CMakeLists.txt | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/icons/CMakeLists.txt b/src/icons/CMakeLists.txt index 63f765b..3f1a2ba 100644 --- a/src/icons/CMakeLists.txt +++ b/src/icons/CMakeLists.txt @@ -1 +1,22 @@ -tde_install_icons( ) +##### install application icon ################## + +tde_install_icons( ${PROJECT_NAME} ) + + +##### install other icons ####################### + +unset( _other_icons ) +file( GLOB _icon_files *-*.png *-*.mng *-*.svg* ) +foreach( _icon_file ${_icon_files} ) + string( REGEX REPLACE ".*-([^.]*)\\.(png|mng|svg.*)$" "\\1" _icon ${_icon_file} ) + if( NOT "${_icon}" STREQUAL "${PROJECT_NAME}" ) + list( APPEND _other_icons "${_icon}" ) + endif( ) +endforeach( ) + +if( _other_icons ) + list( SORT _other_icons ) + list( REMOVE_DUPLICATES _other_icons ) + + tde_install_icons( ${_other_icons} DESTINATION "${DATA_INSTALL_DIR}/${PROJECT_NAME}/icons" ) +endif( )