Hi I am developing a Qt application that uses a plugin (dynamic library) and I was wondering if there was a way I could build the application and library in one file (maybe using the QResource feature?)
|
|
|
|
|
|
|
Qt supports linking plugins statically to your application. See the documentation. You use the
You also need to list the plugins in QTPLUGIN in your .pro file:
You may also need to build a static version of Qt yourself - not sure if the prebuilt versions contain static libraries (I don't use the prebuilt code). |
|||
|
|
|
|
You want an application like "DLL to Lib" that will convert your DLL file to a static library. Then you'd link with the .lib file instead of the DLL and you're all set. You can download a trial of one product here: |
||
|
|
