What are the basic steps to compile an OpenGL application using GLUT (OpenGL Utility Toolkit) under Visual C++ Express Edition?
|
3
|
|
|
|
|
|
Your program which uses GLUT or OpenGL should compile under Visual C++ Express Edition now. |
|||
|
|
|
|
The GLUT port on Nate Robin's site is from 2001 and has some incompatibilities with versions of Visual Studio more recent than that (.NET 2003 and up). The incompatibility manifests itself as errors about redefinition of
(Due credit: I originally saw this advice on the TAMU help desk website.) I've been using approach #1 myself since .NET 2003 came out, and have used the same modified Here's the diff for the glut.h I use which does #1 (but in appropriate
|
|||
|
|
|
Thanks A lot,Ashwin I had a university project, and I couldn't run the GLUT. You helped me do it. |
||
|
|
|
|
yr its nt working at all the errors are 1>------ Build started: Project: huj, Configuration: Release Win32 ------ 1>Compiling... 1>cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release 1>kinematic_demo.cpp 1>main.cpp 1>C:\glut\include\gl/glut.h(149) : error C2381: 'exit' : redefinition; __declspec(noreturn) differs 1> C:\glut\include\gl/glut.h(146) : see declaration of 'exit' 1>C:\Program Files\Microsoft Visual Studio 9.0\VC\include\stdlib.h(371) : warning C4985: 'exit': attributes not present on previous declaration. 1> C:\glut\include\gl/glut.h(146) : see declaration of 'exit' 1>app.cpp 1>C:\glut\include\gl/glut.h(149) : error C2381: 'exit' : redefinition; __declspec(noreturn) differs 1> C:\glut\include\gl/glut.h(146) : see declaration of 'exit' 1>C:\Program Files\Microsoft Visual Studio 9.0\VC\include\stdlib.h(371) : warning C4985: 'exit': attributes not present on previous declaration. 1> C:\glut\include\gl/glut.h(146) : see declaration of 'exit' 1>Generating Code... 1>Build log was saved at "file://c:\project2\Release\BuildLog.htm" 1>huj - 2 error(s), 3 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== |
||
|
|
