Hi everybody,

I'm trying to install qt quick components for qt 4.7.4, but after having done qmake, make install fails at the following line giving me a lot of linking errors.
Qt Code:
  1. g++ -Wl,-s -mthreads -shared -Wl,--out-implib,..\imports\QtDesktop\plugin\libstyleplugin.a -o ..\imports\QtDesktop\plugin\styleplugin.dll object_script.styleplugin.Release -L"c:\Qt\4.7.4\lib" -L"c:\Qt\4.7.4\lib" -lQtDeclarative4 -lQtScript4 -lQtGui4 -lQtCore4
To copy to clipboard, switch view to plain text mode 
heres some part of a long output

Qt Code:
  1. ./obj\qtmenu.o:qtmenu.cpp:(.text+0xe): undefined reference to `_imp___ZN5QMenu8setTitleERK7QString'
  2. ./obj\qtmenu.o:qtmenu.cpp:(.text+0x39): undefined reference to `_imp___ZNK5QMenu5titleEv'
  3. ./obj\qtmenu.o:qtmenu.cpp:(.text+0x9e): undefined reference to `_imp___ZN7QWidget5closeEv'
  4. ./obj\qtmenu.o:qtmenu.cpp:(.text+0xbe): undefined reference to `_imp___ZNK5QMenu10menuActionEv'
  5. ./obj\qtmenu.o:qtmenu.cpp:(.text+0x13a): undefined reference to `_imp___ZN8QVariantD1Ev'
  6. ....
To copy to clipboard, switch view to plain text mode 
what am I missing?
The libraries are in the c:\Qt\4.7.4\lib folder

Best,
Selim