I have a DLL in which I would like to embed a file using the Qt resource system. I do this for Qt EXEs all of the time without any problems. It seems like the Qt resource system manages resource at the application level however, and so I'm a little unclear if it would be possible to add Qt resources to a DLL. I also don't want the DLL's ability to have resources to interfere with any Qt executable which might be hosting the DLL in terms of its resources. Is it possible to build resource spaces at the DLL level?

Colby