I am using the QT Creator 0.9.2 RC1 under Windows. Since I modified my .pro file for better organisation of my output files everytime when I try to start my program out of the IDE the Qt Creator starts to compile it again, freezes a while, then outputs: "The process could not be started!".

Heres my pro file:
Qt Code:
  1. # -------------------------------------------------
  2. # Project created by QtCreator 2009-02-06T01:28:15
  3. # -------------------------------------------------
  4. TARGET = uglyviewer
  5. TEMPLATE = app
  6. UI_DIR = tmp
  7. MOC_DIR = tmp
  8. SOURCES += src/uglyviewer.cpp \
  9. src/main.cpp
  10. HEADERS += src/uglyviewer.h
  11. FORMS += ui/uglyviewer.ui
  12. RESOURCES += res/resource.qrc
  13.  
  14. debug {
  15. DESTDIR = bin/debug/
  16. OBJECTS_DIR = tmp/debug/
  17. RCC_DIR = tmp/debug/
  18. }
  19.  
  20. release {
  21. DESTDIR = bin/release/
  22. OBJECTS_DIR = tmp/release/
  23. RCC_DIR = tmp/release/
  24. }
To copy to clipboard, switch view to plain text mode 

Starting the program normally i.e not out of the IDE works fine.