Dear All
My application is running fine inlinux, and in windows its compiling but not executing the exe.
Error : The application failed to initialize properly(0xc0000005).

I have put all the necessary dlls in PATH. I am using Qwt whose PATH is mentioned in the .pro file….Please check my .pro file
Qt Code:
  1. QWT_ROOT = C:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1
  2. TEMPLATE = app
  3. TARGET = bin/AirfoilOptGUI
  4. win32 {
  5. DEPENDPATH += lib source C:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib
  6. INCLUDEPATH += inc C:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/src
  7. }
  8. unix {
  9. DEPENDPATH += lib source
  10. INCLUDEPATH += inc
  11. }
  12. CONFIG += assistant \
  13. qt
  14. QT += opengl \
  15. network
  16. MOC_DIR = moc
  17. OBJECTS_DIR = obj
  18. HEADERS += inc/*.h
  19. SOURCES += source/*.cpp
  20. RESOURCES += ./rc/airfoiloptgui.qrc
  21. RC_FILE = airfoiloptgui.rc
  22. # install
  23. sources.files = $$SOURCES $$HEADERS $$RESOURCES documentation images/* *.pro
  24. win32{
  25.   LIBS += -LC:/Qt/4.8.0_nonsql/src/3rdparty/qwt-5.2.1/lib -lqwt5
  26. }
  27. unix {
  28. LIBS += -L./lib -lQtCore -lQtGui -lQtAssistantClient -lQtXml \
  29.   ./lib/libqwt.so.5
  30. }
To copy to clipboard, switch view to plain text mode 

Any help would be highly appreciated. Thanks Sujan