The user has installed the SDK v2010.02 also Qt 4.6.2 and MinGW (witch is installed with the SDK)

When I use Qt Creator, he configured:
Qt Code:
  1. QMake: qmake.exe proyecto.pro -spec win32-g++ -r
  2. Make: mingw32-make.exe -w c:\...\proyecto
To copy to clipboard, switch view to plain text mode 

The not have installed the system VC++

To compile the Qt 4.6.2 libraries:

Qt Code:
  1. cd C:\Qt\4.6.2\src
  2. mingw32-make distclean
  3. qmake
  4. mingw32-make
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. And after compiling, these errors are show:
  2. main.cpp:45:44: error: ../../corelib/global/qconfig.cpp: No such file or directory
  3. mingw32-make[2]: *** [release/main.o] Error 1
  4. mingw32-make[2]: Leaving directory `C:/Qt/4.6.2/src/tools/moc'
  5. mingw32-make[1]: *** [release] Error 2
  6. mingw32-make[1]: Leaving directory `C:/Qt/4.6.2/src/tools/moc'
  7. mingw32-make: *** [sub-moc-make_default] Error 2
To copy to clipboard, switch view to plain text mode 

I recompiled the plugin in release version, and the project setting hace Qt Creator.
Qt Code:
  1. QMake: qmake.exe proyecto.pro -spec win32-g++ -r
  2. Make: mingw32-make.exe in c:\...\proyecto
To copy to clipboard, switch view to plain text mode 

But loading the plugin in Qt Creator still shows the same error.

Qt en Espanol