source: opengl-game/README.txt@ b33f87b

feature/imgui-sdl points-test
Last change on this file since b33f87b was 4d52702, checked in by Dmitry Portnoy <dmp1488@…>, 8 years ago

Add Visual Studio project files and support for building in Windows

  • Property mode set to 100644
File size: 1.1 KB
Line 
1Installation Instructions for Linux
2---------------------------------------
3
4-Compile GLEW from source
5 (download and following the instructions in README.md)
6
7sudo apt-get install cmake xorg-dev libglew-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev
8
9-Compile GLFW3 from source
10 (cmake . && make && sudo make install)
11
12Installation Instructions for OSX
13---------------------------------------
14
15Install and link glfw and glew using homebrew. This should place all necessary
16files (or possibly symlinks to them) in /usr/loca/include and /usr/local/lib.
17
18Run 'xcode-select --install'
19This should make g++ check for libraries in /usr/local/
20
21Installation Instructions for Windows
22---------------------------------------
23
24Download the precompiled 32bit binaries of GLFW and GLEW.
25Create /lib and /include folders and add the paths to those folders to the
26VC++ project. Copy the include/GL and include/GLFW folders into your /include
27folder and all the files in the include folders of both libraries into your /lib
28folder. This should be enough to compile and run the project.
Note: See TracBrowser for help on using the repository browser.