How to use:
Through brew (http://brew.sh/), install:
$ brew install glfw3 glm glew pkg-config
Verify that pkg-config finds glfw3 and friends' include dirs and libraries:
$ pkg-config --cflags --libs glfw3 glm glew
Should be something like:
... -I/usr/local/Cellar/glfw3/3.2.1/include -L/usr/local/Cellar/glfw3/3.2.1/lib -lglfw3 ... (more flags for glm/glew)
Also modify the includes in main.h and Window.h to be:
#include <GL/glew.h>
#include <OpenGL/gl3.h>
#include <OpenGL/glext.h>
You should name the output file something else since the starter code has a folder with the same name. Or just delete that folder since we don't have to use visual studio.