I've created a custom widget with a Qt Designer plugin using Qt 3.3.2
The custom widget has buttons that contain IconSet images. The images
were added to the .pro file and called in the code using ::fromMimeSource()

Compiling this project gives me a .lib file that I can include in other Qt projects to use my custom widget.

When using this custom widget the images never show up on the buttons. It seems to me that something must be done to get the images to the compiler of the new project that links in the .lib custom widget file.

Any suggestions?