Hi all

I´ve built a small app using Qwt with .pro file like this:

Qt Code:
  1. QT += opengl \
  2. sql \
  3. svg \
  4. xml
  5. LIBS += c:/qwt-5.2.0/lib/qwt5.dll c:/qwt-5.2.0/lib/qwtd5.dll
  6. INCLUDEPATH += c:/qwt-5.2.0/src
  7. DEFINES += QWT_DLL
  8. CONFIG += debug_and_release
  9. TARGET = qtcreator2
  10. TEMPLATE = app
  11. SOURCES += main.cpp \
  12. mainwindow.cpp \
  13. plotterwidgetqwt.cpp
  14. HEADERS += mainwindow.h \
  15. plotterwidgetqwt.h
  16. FORMS += mainwindow.ui \
  17. plotterwidgetqwt.ui
  18. RESOURCES += mdi.qrc
To copy to clipboard, switch view to plain text mode 

Inside QtCreator, I guess I´ve set all properly (Qt location C:\Qt\2009.04\qt, gdb location C:\Qt\2009.04\mingw\bin\gdb.exe, etc), and the code compiles ok. In fact, from a command prompt with proper path to qwt5.dll and qwtd5.dll, both release and debug executables work fine.
But when I run from within QtCreator (Ctrl+R), the app doesn´t start and I get:
C:\<MyPath>qtcreator2\debug\qtcreator2.exe exited with code -1073741515
What could be wrong???? Tks.