I wanna make a code on С so i need glut32.dll
I have added it to py project but still "fatal error C1083: Cant open file include: glut.h: No such file or directory"
Why it is not working help me plssss
Headers (glut.h, etc.):
Place the header files (glut.h, GL.h, GLU.h, etc.) into your compiler's include directory, or specify the path explicitly in your compilation command.
Libraries (glut32.lib or freeglut.lib):
Place the library files into your library directory, or specify the path explicitly.
- Use your compiler with the correct include and library paths. For example, if you're using MinGW with gcc:
gcc your_program.c -o your_program -I"path/to/freeglut/include" -L"path/to/freeglut/lib" -lglut32 -lglu32 -lOpenGL32
- The glut32.dll (or freeglut.dll) should be in your system's PATH or in the same directory as your executable when running.