views:

39

answers:

1

I'm building a tool that has some .bmp icon images in it. When I build the application statically, the images must be placed inside the application's folder to run, which defeats the purpose of having a static application in the first place. Is there a way to get the images to be rolled into the application during the build process?

+4  A: 

Qt has a resource system that solves this problem.

Matias Valdenegro
Wow I totally missed this, thanks a lot