I think this one is very elemental but I can not catch my misunderstood.
I just want to have a project with different targets, debug and release to develop under QtCreator. If I have this pro file

Qt Code:
  1. QT += core gui
  2.  
  3. TARGET = WTest
  4. TEMPLATE = app
  5.  
  6.  
  7. SOURCES += main.cpp\
  8. mainwindow.cpp
  9.  
  10. HEADERS += mainwindow.h
  11.  
  12. FORMS += mainwindow.ui
  13.  
  14. win32{
  15.  
  16. debug {
  17. OBJECTS_DIR=T:/Tmp/ObjsD
  18. }
  19. release {
  20. OBJECTS_DIR=T:/Tmp/ObjsR
  21. }
  22. }
To copy to clipboard, switch view to plain text mode 
And I select the Debug target, it is, souldn't it write the objects to the t:/Tmp/ObjsD directory? (it writes to ObjsR actually)