How can i change building directory in qt project file? I tried this:
TARGET = project
win32: {
    CONFIG(release, debug|release): DLLDESTDIR +=  $$PWD/../lib
}
unix: {
    CONFIG(release, debug|release): QMAKE_POST_LINK += $$quote(cp project $$PWD/../lib)
}
But this didn't give result :(
Found something a bit similar: DESTDIR parameter. However, this option is only responsible for executables. And how to transfer all the files?
 
    