I\'ve read a lot about how to add an icon to an application built with Visual Studio, but I have no idea how to do this with Eclipse Galileo / C / MinGW.
Can anyone
I zip up all of the icons I want to use within the project first. Then Rename the .zip to a .jar
Create a resource folder if you havent got one already (I use "lib") Then place the jar file inside the resource folder.
Then one simple addition to the project properties:
by right clicking and Configure "Java Build Path" - select the Libraries tab. Click on the Add JARs button and add the icons.jar to the libraries - then save.
Now its easy to allocate the desired image icon inside the Window Builder editor for example as the jar containing your icons appears within the Image Selection mode chooser within the Classpath resource list. Everything works as it should and compiles fine.