In order to compile the example programs in EiffelOpenGL, you must manually
set the following environment variables (they are used in the Ace files) :
EIFOGL This points out the directory where EiffelOpenGL is
installed on your machine. Continuing the example from above, that would be:
EIFOGL=C:\dev\eifogl
EIFFEL_COMPILER This tells which Eiffel compiler you want to use with
EiffelOpenGL. Currently only ISE is supported so you should set it like this:
EIFFEL_COMPILER=ise
GL This points out the directory where OpenGL is installed on your
machine. The Ace files assume that the OpenGL directory contains one "include"
and one "lib" directory containing the C header files and import libraries for
OpenGL. It might look like this:
GL=C:\dev\opengl
GLUT This points out the directory where GLUT is installed on your
machine. The Ace files assume that the GLUT directory contains one "include"
and one "lib" directory containing the C header files and import libraries for
OpenGL. It might look like this:
GLUT=C:\dev\glut-3.7.3