Site hosted by Angelfire.com: Build your free website today!

OpenGL DEV-C++ 4.0 Setup

These are the setting needed in order to compile an openGL program

Note all files needed to compile with openGL are shipped with DEV-C++
Directory files
The following files should be in these directories:
Library files:
/dev-c++/lib
libopengl32.a Note the 32 means 32 bit librarys
libglu32.a
libglut32.a
libglaux.a

INCLUDE files:
/dev-c++/include/GL/
gl.h
glu.h
glut.h
glaux.h



Create Project



Linker settings



Note you may also need to include the following includes to get some examples to compile:
stdlib.h
math.h

Home