glut apps

werh37

Registered
hello, has anyone tried to make glut applications without the project manager? I have a 'Makefile' template that I'd like to use, but I can't find the libraries for Glut. However, I found the libs for GL and GLU. Thanks.
 
This is just speculation, but you probably want to add

-framework GLUT

to the flags for cc, which should tell it to use the right libs for GLUT (and GL and GLU).
 
Back
Top