nsis: Be sure to copy 24x24 icons too

This commit is contained in:
Paweł Forysiuk 2012-08-22 14:29:37 +02:00 committed by Christian Dywan
parent fd5daab3e2
commit bf20c2b7ab
1 changed files with 2 additions and 0 deletions

View File

@ -160,6 +160,7 @@ SectionEnd
!macro InstallIconThemeRenameSmall OPath IPath
File "/oname=16x16\${OPath}.png" "${RESOURCEDIR}\share\icons\${ICON_THEME}\16x16\${IPath}.png"
File "/oname=22x22\${OPath}.png" "${RESOURCEDIR}\share\icons\${ICON_THEME}\22x22\${IPath}.png"
File "/oname=24x24\${OPath}.png" "${RESOURCEDIR}\share\icons\${ICON_THEME}\24x24\${IPath}.png"
File "/oname=32x32\${OPath}.png" "${RESOURCEDIR}\share\icons\${ICON_THEME}\32x32\${IPath}.png"
!macroend
@ -181,6 +182,7 @@ SectionEnd
!macro CreateIconThemeSectionsSmall SectionPath
CreateDirectory "$INSTDIR\share\icons\${ICON_THEME}\16x16\${SectionPath}"
CreateDirectory "$INSTDIR\share\icons\${ICON_THEME}\22x22\${SectionPath}"
CreateDirectory "$INSTDIR\share\icons\${ICON_THEME}\24x24\${SectionPath}"
CreateDirectory "$INSTDIR\share\icons\${ICON_THEME}\32x32\${SectionPath}"
!macroend