In Windows, using mingw's gcc, is there anyway to specify that the output exe file is to take an icon file, so that the exe file shows with that icon in explorer?
|
feedback
|
|
First you need to create a
Well, actually, I suppose you need to create the icon first... but anyway... the ID can pretty much anything. It doesn't matter unless you want to refer to it in your code. Then run windres as follows:
Then you just include my.res along with your object files when you link. e.g.,
And that should be all there is to it. Hope it helps, I spent an entire evening tracking his down last week when porting my wxwidgets program from linux to windoze... And, at no extra charge, if you want to include version information in your application, add the following boilerplate to your
Note, the langID is for U.K. English (which is the closest localisation to Australia I could identify.) If you want U.S. "English" then change the
and the translation line to:
See here for for info. | |||
|
feedback
|
|
use windres to compile your resources, and add them to your executable. | |||
|
feedback
|