If you want to compile qGo on Windows (as well as Linux or Mac) yourself, get the tmake package from the download page. For further information please refer to the Qt and tmake documentation. You need to have either the non-commercial Qt package or a commercial Version and Visual Studio installed on your system.
To compile go to the src directory and type
for Qt version 2.3:
tmake -o Makefile main.pro
nmake
for Qt version 3.0 and above:
qmake -o Makefile qgo.pro
nmake
On Unix use make instead of nmake
If you want to work with Visual C++ IDE, you may use either the file qgo23.dsw (Qt 2.3) or qgo.dsw (Qt 3.x) and create a corresponding .dsp file using the command
for Qt version 2.3:
tmake -t vcapp -o qgo23.dsp qgo23.pro
for Qt version 3.x:
qmake -t vcapp -o qgo.dsp qgo.pro