It's like the 3D Game Engine, except in C++
It’s like the 3D Game Engine, except in C++
##Build Dependencies##
###NOTES for Dependencies###
On Unix/Linux/Mac you can likely install CMAKE, GLEW, SDL2 and ASSIMP with your package manager
# On ubuntu just run
sudo apt-get install cmake libglew-dev libsdl2-dev libassimp-dev
# On Mac with HomeBrew just run
brew install cmake glew sdl2 assimp
##Simple Build Instructions##
###Mac OSX/Linux/Unix###
# install dependencies
./Unix-Build.sh [Build Target, Debug or Release (Optional)] [Any arguments for CMake (Optional)]
#For instance, you can use the CMake argument -G "Xcode" to generate an Xcode project during build,
#or you can use -G "CodeBlocks - Unix Makefiles" to generate a CodeBlocks Project.
#See http://www.cmake.org/ for more details about CMake arguments
###Windows###
##Manual Build Instructions##
###Linux/Unix###
# install dependencies
cd build
cmake ../
make
###Mac OSX###
# install dependencies
cd build
cmake ../
make
###Windows/MinGW###
# install dependencies
# Install GLEW in %PROGRAMFILES%/GLEW or SET %GLEW_ROOT_DIR% to where GLEW is on your machine (Example: D:\PATH_TO_GLEW)
# Install SDL2 in %PROGRAMFILES%/SDL2 or SET %SDL2_ROOT_DIR% to where SDL2 is on your machine (Example: D:\PATH_TO_SDL2)
# Install ASSIMP in %PROGRAMFILES%/ASSIMP or SET %ASSIMP_ROOT_DIR% to where ASSIMP is on your machine (Example: D:\PATH_TO_ASSIMP)
cd build
# REPLACE "Visual Studio 12" with your preferred build toolchain (Maybe you want "Codeblocks - MinGW Makefiles")
# BTW VS 10 is VS 2010, VS 11 is VS 2012 and VS 12 is VS 2013, BLAME MicroSoft for the naming! LOL!
cmake -G "Visual Studio 12" ../
# open the generated SLN file (or cbp file if using CodeBlocks) and build!
##Additional Credits##