Tutorial one :(
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.
-I"C:\Dev-cpp\include"
or similar, where ever your compiler''s include files are.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement