Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I have 2 libraries I want to link but I want one to only link for Windows builds and one only for Linux builds How do I achieve this with qmake?
@benjysugi
You can do something like that: linux { LIBS += -yourlib1 } win { LIBS += -yourlib2 }
That's just the idea, see qmake docs for more