2014-08-01 17:30:13 +04:00
|
|
|
|
|
|
|
# Install the Mac icon container into the Mac Bundle.
|
|
|
|
if( BUILD_OWNCLOUD_OSX_BUNDLE AND NOT BUILD_LIBRARIES_ONLY )
|
|
|
|
set (ICON_DIR ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources/icons)
|
|
|
|
|
|
|
|
file(GLOB mac_icons "icns/*icns")
|
|
|
|
install(FILES ${mac_icons} DESTINATION ${ICON_DIR})
|
|
|
|
endif()
|
|
|
|
|
2014-08-04 19:20:57 +04:00
|
|
|
if( UNIX AND NOT APPLE )
|
|
|
|
|
|
|
|
SET(ICON_DIR ${DATADIR}/icons/hicolor)
|
|
|
|
|
|
|
|
FOREACH(size 128x128 16x16 256x256 32x32 48x48 64x64 72x72)
|
2014-08-05 13:46:21 +04:00
|
|
|
file(GLOB files "${size}/*.png")
|
2014-08-29 22:01:39 +04:00
|
|
|
FOREACH( file ${files} )
|
2014-09-29 18:08:49 +04:00
|
|
|
# the GLOB returns a absolute path. Make it relative by replacing the current src dir by nothing
|
|
|
|
STRING(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/${size}/" "" shortFile ${file})
|
|
|
|
STRING(REPLACE "oC" ${APPLICATION_NAME} brandedName ${shortFile})
|
2014-08-29 22:01:39 +04:00
|
|
|
install(FILES ${file} DESTINATION ${ICON_DIR}/${size}/apps RENAME ${brandedName})
|
|
|
|
ENDFOREACH(file)
|
2014-08-04 19:20:57 +04:00
|
|
|
ENDFOREACH(size)
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
|