I have problem. Im compiling following c-file
#include <stdio.h>
#include <GLUT/glut.h>
int main() {
return 0;
}
commands:
clang -framework GLUT main.c
clang -F/System/Library/Frameworks/GLUT.framework/ main.c
clang -F/System/Library/Frameworks/GLUT.framework/GLUT main.c
and i get error:
fatal error: 'GLUT/glut.h' file not found
#include <GLUT/glut.h>
^
1 error generated.
How properly to include glut?