Author Topic: changing the icon  (Read 3449 times)

Offline bijan311

  • Multiple posting newcomer
  • *
  • Posts: 11
changing the icon
« on: February 01, 2010, 05:54:14 am »
I changed an icon of one of my programs compiled in code blocks using a program, but when i compiled it again, it reverted to the default icon. Is there a way to fix this?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: changing the icon
« Reply #1 on: February 01, 2010, 07:33:58 am »
Is there a way to fix this?
Yes, use the resource compiler to embed the icon into your application directly. Assuming your are using MinGW/GCC 4 on Windows (you did not tell anything about your configuration) you have to create a resource file (RC) and embed the icon as *.ico file naming it in a  way it will e the very first resource (e.g. "AAAIcon"). Make sure the icon has proper size, consult resource handling articles accordingly (we don't provide support for teaching how to do that). You can have a look how Code::Blocks does that assuming your are using wxWidgets.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ