Installation Instructions for Linux
---------------------------------------

sudo apt-get install xorg-dev  libglew-dev libglm-dev

make game

(Old Linux instructions for compuling game.cpp)
-sudo apt-get install cmake xorg-dev  libglew-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev
-
--Compile GLFW3 from source
- (cmake . && make && sudo make install)

Installation Instructions for OSX
---------------------------------------

Install and link glfw and glew using homebrew. This should place all necessary
files (or possibly symlinks to them) in /usr/loca/include and /usr/local/lib.

Run 'xcode-select --install'
This should make g++ check for libraries in /usr/local/

Installation Instructions for Windows
---------------------------------------

Download the precompiled 32bit binaries of GLFW, GLEW, and glm (a header-only
library). Create lib/ and include/ folders in the root opengl-game directory
you cloned. Copy the include/GL/, include/GLFW/, and glm/ folders into your
include/ folder and all the files in the lib/ folders of the GLFW and GLEW
libraries into your lib/ folder (glm has no lib/ folder). This should be enough
to compile and run the project.
