I know using DESTDIR to specify export path, but I don't know how can I export the library file to path which is different from DESTDIR. Like that:
---Build
|---bin
| |---*.exe
| |---*.dll
|---lib
| |---*.lib
Thanks for helping
QMake has a special, windows-only variable
DLLDESTDIR
which you can use to specify a different destination for the.dll
itself. So to achieve what you want, pointDESTDIR
to the directory where everything except the DLL should end up, endDLLDESTDIR
to the location for the DLL: