Advertisement

Tutorial one :(

Started by May 30, 2003 09:32 AM
1 comment, last by Mandible 21 years, 9 months ago
22 C:\Dev-Cpp\Templates\main.cpp:4 gl\glaux.h: No such file or directory. I''m using Dev C++ and I''ve added a lot of packages and tried playing with the options but it doesn''t seem to be finding the #include <gl\glaux.h> I tried writing the code myself and when that didn''t work I downloaded the tutorial one source for Dev C++ either way it can''t find gl\glaux.h was wondering if anyone could point me to the answer I''m using version Dev C++ 4.9.8.0
I don''t use Dev C++, but it sounds like your include path isn''t set up. Most compilers I''ve used have a -I command line parameter that let you tell the compiler additional directories to use to look for include files. E.g.

-I"C:\Dev-cpp\include"

or similar, where ever your compiler''s include files are.
Brianmiserere nostri Domine miserere nostri
Advertisement
thanks did a search and found glaux.h in another dir other than the GL directory so I put a copy of it in the GL directory so now I''m at least past that problem thanks

This topic is closed to new replies.

Advertisement