T.Doe
T.Doe

Reputation: 2035

How do I get the glew.h & freeglut.h libraries?

I'm new to C++ & Visual Studio and a friend sent me a file of an example project. It currently won't open due to several errors but the main 2 include the inability for the project to find the glew.h & freeglut.h libraries (shown in the image below).

enter image description here

How can I add these libraries and get rid of these two errors?

Upvotes: 1

Views: 5525

Answers (1)

Mikel F
Mikel F

Reputation: 3681

I did a search on 'glew.h' and came up with: The OpenGL Extension Wrangler Library. This is a good place to start:

http://glew.sourceforge.net/install.html

For freeglut:

http://freeglut.sourceforge.net/

Upvotes: 1

Related Questions