Reputation: 55610
I want to include a third party library by specifying it in my INCLUDEPATH
in my .pro file. However, the library is installed in a different location on each platform (Windows, Mac, Linux).
How do I properly specify an INCLUDEPATH
for a cross-platform application?
Upvotes: 0
Views: 149
Reputation: 761
The way to do this in your .pro file is to use LIBS += as seen in this other related stack overflow question at Adding external library into Qt Creator project
Upvotes: 2