In my project I'd like to have a special folder for the output files. Specifying DESTDIR is the .pro file seems to do the job, but in Qt 5.6 after running qmake there are still two folders (debug and release) generated alongside the project file. How to disable it?

The issue is quite easy to reproduce:
Qt Code:
  1. TEMPLATE = app
  2. DESTDIR = bin
To copy to clipboard, switch view to plain text mode 

In Qt 4.8 adding MOC_DIR and OBJECTS_DIR helps:
Qt Code:
  1. TEMPLATE = app
  2. DESTDIR = bin
  3. MOC_DIR = moc
  4. OBJECTS_DIR = obj
To copy to clipboard, switch view to plain text mode 

But in Qt5 it doesn't seem to change anything.