What is the easiest way to reference libraries in Qt projects?
- by Jake Petroules
I have two Qt4 Gui Application projects and one shared library project, all referenced under a .pro file with the "subdirs" template. So, it's like:
exampleapp.pro
app1.pro
app2.pro
sharedlib.pro
Now, what I want to do is reference sharedlib from app1 and app2 so that every time I run app1.exe, I don't have to manually copy sharedlib.dll from…