1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-04-09 19:15:43 +02:00

Mac OS: Make icns generation work when building with Qt 5

This commit is contained in:
Daniel Molkentin 2014-02-04 08:36:59 +01:00
parent 0c0b3f8580
commit 924e7d4e39

View File

@ -69,7 +69,7 @@ macro (KDE4_ADD_APP_ICON appsources pattern)
message(FATAL_ERROR "Unable to find the png2ico or windres utilities - application will not have an application icon!")
endif(PNG2ICO_EXECUTABLE AND WINDRES_EXECUTABLE)
endif(WIN32)
if (Q_WS_MAC)
if (APPLE)
# first convert image to a tiff using the Mac OS X "sips" utility,
# then use tiff2icns to convert to an icon
find_program(SIPS_EXECUTABLE NAMES sips)
@ -110,5 +110,5 @@ macro (KDE4_ADD_APP_ICON appsources pattern)
else(SIPS_EXECUTABLE AND TIFF2ICNS_EXECUTABLE)
message(STATUS "Unable to find the sips and tiff2icns utilities - application will not have an application icon!")
endif(SIPS_EXECUTABLE AND TIFF2ICNS_EXECUTABLE)
endif(Q_WS_MAC)
endif(APPLE)
endmacro (KDE4_ADD_APP_ICON)