I have not been able to build Qt5.0.1 from source. I need to build it with the OpenGL Desktop. I get a LINK 2019 (unresolved symbols) such as:

qicucodec.obj : error LNK2019: unresolved external symbol _ucnv_getAlias_50 referenced in function "public: static class QList<class QByteArray> __cdecl QIcuCodec::availableCodecs(void)" (?availableCodecs@QIcuCodec@@SA?AV?$QList@VQByteAr ray@@@@XZ)


Here is my configuration:
* Windows 7
* Visual Studio 2010 Express
* Qt 5.0.1 source
* strawberry Perl
* Python 2.6
* Latest ICU from http://site.icu-project.org/download...ICU4C-Download

I followed the instructions provided by Qt and Vincenzo Mercuri (http://www.holoborodko.com/pavel/201.../#comment-7546).
* I added icu/include to the INCLUDE path and icu/lib64 to the LIBRARY path.

Here is my configure command line:

configure -prefix %CD%\qtbase -release -opensource -icu -platform win32-msvc2010 -opengl desktop -nomake examples -nomake tests -I C:\icu\include -L C:\icu\lib64

When I typed nmake (or jom -j 4) I got LINK 2019 errors on the following command:

link /NOLOGO /DYNAMICBASE /NXCOMPAT /BASE:0x67000000 /INCREMENTAL:NO /DLL /VERSION:5.01 /MANIFEST /MANIFESTFILE:c:\Qt\Qt5.0.1\src\qtbase\lib\Qt5Core. dll.embed.manifest /OUT:c:\Qt\Qt5.0.1\src\qtbase\lib\Qt5Core.dll @C:\Users\AimTest\AppData\Local\Temp\nmA63D.tmp

What am I doing wrong?