How to: Setup Qt 4.5 Visual Studio Integration
http://www.24hsoftware.com/go?GU=http://dcsoft.com/community_server/blog...
Qt 4.5 with Visual Studio 2008 (VC++ Express)
http://www.24hsoftware.com/go?GU=http://geeks.netindonesia.net/blogs/ris...
Windows Environment Variables and how to compile and build with MinGW
http://www.24hsoftware.com/go?GU=http://www.itworld2.com/qtcompilation.aspx
The default compilation of QT under windows is with Visual Studio. This makes the reditribution for Windows XP and Vista much more difficult.
QMAKE (QTsoftware)
qmake is a tool that helps simplify the build process for development project across different platforms. Qmake automates the generation of Makefiles so that only a few lines of information are needed to create each Makefile. qmake can be used for any software project, whether it is written in Qt or not.
http://www.24hsoftware.com/go?GU=http://doc.trolltech.com/4.5/qmake-manu...
MinGW
A native Windows port of the GNU Compiler Collection (GCC), with freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality.
CMake
CMake is an open-source system that manages the build process in a compiler-independent manner.
CMake can compile source code, create libraries, generate wrappers and build executables.
Simple configuration files placed in each source directory (called CMakeLists.txt files) are used to generate standard build files (e.g., makefiles on Unix and projects/workspaces in Windows MSVC).