Odie's Method

This is with visual c++ in Win95.

I'm enclosing a zip file containing 1 .h file, 2 .dll files and 2 .lib files.

  • Put the dll files under window/system directory.
  • Put the lib files under VC/lib directory.
  • Put the header file under include/gl directory.
  • This is how to get it working for vc++. i'm sure it'll work for other compilers.
  • Basically what is different for other compilers will be where the .lib files should be placed (together with other .lib files in the compiler directory ).
  • The .h file should be placed under the /include directory ( create a subdirectory called gl and put glut.h in there or change the #include <GL/glut.h> to #include <glut.h> in the programs )