From 4d351168da7ec788d6012e9812407f122d3c42db Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Wed, 9 Dec 2015 00:49:55 +0100 Subject: [PATCH] Don't compile 64x64 icon into OSX iconset --- src/tomahawk/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tomahawk/CMakeLists.txt b/src/tomahawk/CMakeLists.txt index d328be9cd..e18c798ec 100644 --- a/src/tomahawk/CMakeLists.txt +++ b/src/tomahawk/CMakeLists.txt @@ -146,6 +146,10 @@ IF( BUILD_GUI ) ENDIF() file( GLOB_RECURSE TOMAHAWK_ICONS "${CMAKE_SOURCE_DIR}/data/icons/*-tomahawk-icon.png" ) +if(APPLE) + list(REMOVE_ITEM TOMAHAWK_ICONS "${CMAKE_SOURCE_DIR}/data/icons/64x64-tomahawk-icon.png") +endif() + ecm_add_app_icon( tomahawkSources ICONS ${TOMAHAWK_ICONS} )