In case you would like to use the latest version of Qt using OpenGL instead of ANGLE in combination with Visual Studio 2012 and target a 32-bit platform you will be disappointed to find out that there are no precompiled libraries available from the Qt-Project website...
Instead of using precompiled libraries you need to compile Qt yourself if you still want to use Qt with Visual Studio 2012.
Requirements
In order to compile Qt you first need a couple of prerequisites, be sure to get the 32-bit versions.
- Download and install Python http://www.python.org/getit/ (x86).
- Download and install Perl http://strawberryperl.com/ (32 bit).
- Download jom http://qt-project.org/wiki/jom.
- jom is a clone of nmake to support the execution of multiple independent commands in parallel. It basically adds the -j command line switch similar to GNU make http://blog.qt.digia.com/blog/2009/03/27/speeding-up-visual-c-qt-builds/
- Download and extract the Qt sources from http://qt-project.org/downloads.
- Copy the jom contents to the Qt sources directory.
- Make sure python and perl are accessible everywhere from the commandline by testing "python --version" and "perl -v".
Compiling the Qt sources
- Open the Visual Studio 2012 command prompt.
- It should be located in Start > Microsoft Visual Studio 2012 > Visual Studio Tools > VS2012 x86 Native Tools Command Prompt.
- Be sure you are opening the x86 version and not the x64 version!
- Navigate to the Qt sources directory by using "cd <directory here>".
- Type "configure -developer-build -opensource -opengl desktop -nomake examples -nomake tests"
- It should ask you to accept the terms of the license.
- Then it should start configuring the Qt sources for compilation, this will just take a minute.
- Finally type "jom" to compile Qt.
- This can take a long time, around 30-60 minutes depending on how fast your computer is. It took me 50 minutes to compile...
Integrating Qt with Visual Studio 2012
After you compiled the Qt libraries you can install the Visual Studio 2012 Add-in for Qt to make life easier. You can get the Add-in from the downloads page under "Other downloads": http://qt-project.org/downloads.
In Visual Studio 2012 I pointed Qt to the qtbase directory in the Qt sources directory by going in the Qt Options. Qt5 > Qt Options. Add a new Qt version and select the qtbase directory, pick a suitable name and press OK. Use this Qt version in your project and you should be able to compile for 32-bit platforms.