Hi all,

I am trying to link GLUT with QT. I have seen some other threads, and I have questions about where to put the glut files. According to this guide about using GLUT with MinGW, where should I put the files? I am using QT 4.7.4., and my initial guess is that:

glut.h should go to C:\QtSDK\Desktop\Qt\4.7.4\mingw\include\GL (?)
glut32.lib should go to C:\QtSDK\Desktop\Qt\4.7.4\mingw\lib\ (?)
It says that glut32.dll should be located in the same directory where the project's executable will be created, and I have no idea where should that be.

Also I guess I should add the following line in the .pro file.
Qt Code:
  1. LIBS+=-lglut32
To copy to clipboard, switch view to plain text mode 

Any help would be appreciated.