I have a custom QT plugin module that has embedded resources. I want to statically link this plugin with an application:
LIBS += -lstatic_plugin_with_resources
In the application I am using the Q_IMPORT_PLUGIN()
macro, which allows the application to use the plugin; however the plugin can not access its embedded resources.
Using the plugin as a shared library does work.