Successful addition of fceux icon to mac osx dmg package.

This commit is contained in:
mjbudd77 2020-07-12 14:10:32 -04:00
parent 44750bf88f
commit 08beead253
3 changed files with 36 additions and 2 deletions

Binary file not shown.

34
scripts/macosx_makeIcons.sh Executable file
View File

@ -0,0 +1,34 @@
#!/bin/bash
SRC_PNG=../fceux1.png
OUTDIR=/tmp/fceux.iconset;
mkdir -p $OUTDIR;
function convert() {
#echo "Convert $1 $2"
WIDTH=$1;
SCALE=$2;
WIDTH2=`expr $WIDTH / 2`;
if [ $SCALE == "2" ]; then
OUT=icon_$WIDTH\x$WIDTH.png
else
OUT=icon_$WIDTH2\x$WIDTH2\@2x.png
fi
CMD="sips -z $WIDTH $WIDTH $SRC_PNG --out $OUTDIR/$OUT";
echo $CMD;
$CMD;
}
convert 32 1 ;
convert 32 2 ;
convert 64 1 ;
convert 64 2 ;
convert 256 1 ;
convert 256 2 ;
convert 512 1 ;
convert 512 2 ;
convert 1024 1 ;
convert 1024 2 ;
iconutil -c icns $OUTDIR/

View File

@ -448,8 +448,8 @@ set( DIRS ${CMAKE_BINARY_DIR} /usr/local/lib)
message(STATUS APPS: ${APPS}) message(STATUS APPS: ${APPS})
message(STATUS DIRS: ${DIRS} ) message(STATUS DIRS: ${DIRS} )
#set(CPACK_PACKAGE_ICON ${CMAKE_SOURCE_DIR}/fceux.icns ) set(CPACK_PACKAGE_ICON ${CMAKE_SOURCE_DIR}/fceux.icns )
#set(CPACK_BUNDLE_ICON ${CMAKE_SOURCE_DIR}/fceux.icns ) set(CPACK_BUNDLE_ICON ${CMAKE_SOURCE_DIR}/fceux.icns )
set(CPACK_GENERATOR "DRAGNDROP") set(CPACK_GENERATOR "DRAGNDROP")
include(CPACK) include(CPACK)