Hi all,
I am trying to transfer a full functioning project from linux to windows.
I am very new to windows architecture.
The project compiles and builds fine.
Then when I try to execute I get some missing .dll files
QtWebKit4.dll
QtWebKitd4.dll
QtNetwork.dll
QtNetworkd.dll
Qt4Core4.dll
Qt4Cored4.dll
QtGui4.dll
QtGuid4.dll

Obviously there is something I haven's configured well ((

my .pro file is like this:

Qt Code:
  1. TARGET = asta
  2. TEMPLATE = app
  3. TARGET = asta
  4. DEPENDPATH += .
  5. INCLUDEPATH += .
  6. QT += core gui
  7.  
  8.  
  9.  
  10. # Input
  11. SOURCES += \
  12. main.cpp \
  13. my2dPlot.cpp \
  14. testObject.cpp \
  15. menuBar.cpp \
  16. mainwindow.cpp \
  17. t4.cpp \
  18. qwt_double_rect.cpp \
  19. plotPicker.cpp \
  20. groupBox.cpp \
  21. myTable.cpp \
  22. myTableItem.cpp \
  23. myLineEdit.cpp \
  24. cell.cpp \
  25. parametermodel.cpp \
  26. comboboxDelegates.cpp \
  27. mysplash.cpp \
  28. internetbrowser.cpp \
  29. pictureflow.cpp \
  30. spinboxdelegates.cpp \
  31. configdialog.cpp \
  32. pages.cpp
  33.  
  34. HEADERS += \
  35. my2dPlot.h \
  36. testObject.h \
  37. menuBar.h \
  38. mainwindow.h \
  39. pixmaps.h \
  40. t4.h \
  41. qwt_double_rect.h \
  42. qwt_array.h \
  43. plotPicker.h \
  44. groupBox.h \
  45. myTable.h \
  46. myTableItem.h \
  47. MyLineEdit.h \
  48. cell.h \
  49. parametermodel.h \
  50. comboboxDelegates.h \
  51. mysplash.h \
  52. internetbrowser.h \
  53. pictureflow.h \
  54. spinboxdelegates.h \
  55. configdialog.h \
  56. pages.h
  57.  
  58. QT += webkit
  59. QT +=opengl
  60. QT +=network
  61. CONFIG +=qwt
  62.  
  63. CONFIG += debug_and_release
  64. CONFIG += build_all
  65.  
  66. INCLUDEPATH += C:\Qt\qwt-6.0.0-rc5\src
  67. LIBS += C:\Qt\qwt-6.0.0-rc5\lib\libqwt.a
  68. LIBS += C:\Qt\qwt-6.0.0-rc5\lib\libqwtd.a
  69.  
  70.  
  71. OTHER_FILES += iconDatabase.txt
  72.  
  73. FORMS += itemdl.ui \
To copy to clipboard, switch view to plain text mode 

even if I copy all these .dlls in the folder of the executable I get an error like

Microsoft Visual C++ Runtime...
"This application has requested the runtime to terminate it in an unusual way..."