In my QBS file I currently have:
cpp.libraryPaths: ["C:/Foo/x64/lib"]
which works OK with the 64-bit MinGW-w64 kit auto-detected by QT Creator.
But building with the 32-bit kit fails since the 32-bit libraries are in a different directory C:/Foo/i686/lib
.
How do I configure it so that a different library path is used if the 32-bit MinGW-w64 kit is selected?
Bonus question: I'd like to get the base path C:/Foo
from some local setting too, because on another development system I have the libraries in a different base path, not C:/Foo
. Is that possible?