I searched and searched and searched for some information on how to install this interface, and finally I found how to install the GLUT on Windows Visual Studio 2010 on Visual Ambitions site.
So, what you’ll need to do is head to Nate Robin’s GLUT page to get the *.dll, *.lib, and the *.h file that you’ll need to get started with the GLUT.
Once you download these files, you’ll need to relocate the files into their proper place.
To do this:
- Move glut.h into C:Program Files (x86)Microsoft Visual Studio 10.0VCincludeGL
- Move glut32.lib into C:Program Files (x86)Microsoft Visual Studio 10.0VClib
- Move glut32.dll into C:WindowsSystem32
That’s the easy part.
NOTE: 64bit machines, move glut32.dll into C:WindowsSysWOW64
Now:
- Open Visual Studio
- Select Empty Project (name it what you wish here)
- Select Project -> Properties -> Linker -> Input and
- add to Additional Dependencies the following: ;opengl32.lib;glu32.lib;glut32.lib; to the end (just before %(AdditionalDependencies) )
So, once this is done, you then have to create a property sheet, which you will then have to import every time you want to include the GLUT in your project. To do this:
- click view -> property manager
- Right click, select Add New Project Sheet (name it something you’ll remember, you’ll be adding it in the future ie. GLUT)
- Right click on the project sheet you just created
- select properties -> VC++ Directories -> Include Directories
- drop down the arrow, and select edit..
- browse to C:Program Files (x86)Microsoft Visual Studio 10.0VCincludeGL (or enter it in manually)
And that’s it!
As mentioned above, you’ll have to add this project sheet to each new project that you create.
If you don’t want this, Visual Ambition explains that you can edit the Microsoft.Cpp.Win32.user file that you see in the properties manager. I haven’t tested this though..
I did however find a few resources you may find useful with regards to the GLUT.
Pingback: Visual Studio Error: ‘exit’: identifier not found « Application & Program Tips « Electronic Services
when select empty project then showing error message. please solve argent.
Biplob, you’re going to have to explain what’s happening a little bit more. What does the error message tell you?