[Solved] Application Icon for Linux/MacOS

BlitzMax Forums/BlitzMax Programming/[Solved] Application Icon for Linux/MacOS

RustyKristi(Posted 2016) [#1]
How do I implement an icon to a Linux/MacOS application? I'm sure this has been asked before but I can't find any links or clue about this discussion.


Derron(Posted 2016) [#2]
http://qt.developpez.com/doc/4.6/appicon/


- windows: ico file in an rc-file
- mac: icns file
- linux: provie an png for the user to use on the link to the binary.


RustyKristi(Posted 2016) [#3]
Thanks Derron, I was thinking more of an example perhaps like using bmx, or do I also compile it to .o and then Import?


markcw(Posted 2016) [#4]
No for Mac it's an image format you use a program to make it, in Linux it's a text file linking to a png.

MacOs
Using an .icns file
Creating an app for distribution

Linux
Program icon on Linux
Blitzmax launch icon and register file extension?


RustyKristi(Posted 2016) [#5]
Thanks munch. That's what I have been looking for! :D