Skip to content
Snippets Groups Projects
Commit 9f4e9a0f authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

icons

parent 0247e2e0
No related branches found
No related tags found
No related merge requests found
Showing
with 24 additions and 0 deletions
...@@ -1305,6 +1305,8 @@ if(APPLE AND ENABLE_APP_BUNDLE) ...@@ -1305,6 +1305,8 @@ if(APPLE AND ENABLE_APP_BUNDLE)
RENAME GmshGeo.icns) RENAME GmshGeo.icns)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIconsMsh.icns DESTINATION . install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIconsMsh.icns DESTINATION .
RENAME GmshMsh.icns) RENAME GmshMsh.icns)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIconsSol.icns DESTINATION .
RENAME GmshSol.icns)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIconsPos.icns DESTINATION . install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIconsPos.icns DESTINATION .
RENAME GmshPos.icns) RENAME GmshPos.icns)
set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIcons.icns) set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR}/Fltk/MacIcons.icns)
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
File added
File deleted
utils/icons/gmsh128x128-smooth.png

5.32 KiB

utils/icons/gmsh16x16-smooth.png

540 B

utils/icons/gmsh32x32-smooth.png

1.14 KiB

utils/icons/gmsh48x48-smooth.png

1.76 KiB

utils/icons/gmsh64x64-smooth.png

2.15 KiB

utils/icons/gmsh_1024x1024.png

76.2 KiB

utils/icons/gmsh_cad_1024x1024.png

90.8 KiB

utils/icons/gmsh_mesh_1024x1024.png

88.5 KiB

utils/icons/gmsh_post_1024x1024.png

91.4 KiB

utils/icons/gmsh_solver_1024x1024.png

94.5 KiB

#!/bin/sh
# create a MacOS icon from a 1024x1024 png master
if [ $# -lt 2 ]; then
echo "Usage: $0 pngfile iconname" 1>&2;
echo "Example: $0 gmsh_1024x1024.png MacIcons" 1>&2;
exit 1;
fi
mkdir $2.iconset
cp $1 $2.iconset/icon_512x512\@2x.png
convert -scale 512 $1 $2.iconset/icon_512x512.png
convert -scale 512 $1 $2.iconset/icon_256x256\@2x.png
convert -scale 256 $1 $2.iconset/icon_256x256.png
convert -scale 256 $1 $2.iconset/icon_128x128\@2x.png
convert -scale 128 $1 $2.iconset/icon_128x128.png
convert -scale 64 $1 $2.iconset/icon_32x32\@2x.png
convert -scale 32 $1 $2.iconset/icon_32x32.png
convert -scale 32 $1 $2.iconset/icon_16x16\@2x.png
convert -scale 16 $1 $2.iconset/icon_16x16.png
iconutil -c icns $2.iconset
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment