You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
#################################################
|
|
#
|
|
# (C) 2015 Timothy Pearson
|
|
# kb9vqf@pearsoncomputing.net
|
|
# (C) 2011 Golubev Alexander
|
|
# fatzer2 (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
set(ICON_THEMES locolor ikons kdeclassic slick kids )
|
|
set(ICON_TYPES actions apps categories devices places mimetypes)
|
|
set(ICON_SIZES 16x16 22x22 32x32 48x48 64x64 128x128 scalable)
|
|
set(ICON_SUFFIXES png mng svg svgz)
|
|
|
|
foreach (theme ${ICON_THEMES})
|
|
tde_create_translated_desktop(
|
|
SOURCE ${theme}/index.theme
|
|
DESTINATION ${ICON_INSTALL_DIR}/${theme}
|
|
PO_DIR icon-themes
|
|
)
|
|
foreach(size ${ICON_SIZES})
|
|
foreach(type ${ICON_TYPES})
|
|
foreach(suffix ${ICON_SUFFIXES})
|
|
file(GLOB files "${theme}/${size}/${type}/*.${suffix}" )
|
|
install(FILES ${files} DESTINATION ${ICON_INSTALL_DIR}/${theme}/${size}/${type}/)
|
|
endforeach(suffix ${ICON_SUFFIXES})
|
|
endforeach(type ${ICON_TYPES})
|
|
endforeach(size ${ICON_SIZES})
|
|
endforeach (theme ${ICON_THEMES})
|