Is it possible to use 3rd party libraries in Qt applications without install the library to the local machine?
Solved
3rd Party Software
-
I've been developing a Qt program which uses poppler library. I installed the library to Linux and MacOS systems easily, but couldn't handle it for Windows. The installation instructions were old and complex. To deploy program, I had to remove the feature that related with poppler library from Windows release. I wonder is it possible to use the library without install it to Windows? Like copying the library folder into the project folder and tweak the .pro file to link it. I tried this but I got an error like "undefined reference to __imp__ZN....".
-
Hi,
To link to a library on Windows you need the corresponding .lib file if using MSVC.
What exactly do you have currently ?