A small duo project to create a randomly generated world that is visually viewable through OpenGL
Clone world-generator
git clone https://github.com/hacktheegg/world-generator.git
Go to the project directory
cd world-generator
Install dependencies
git submodule init
git submodule update
Compile with Cmake
windows
cmake . -G "MinGW Makefiles"
cmake --build .
linux
cmake .
make
Running Program
windows
( cd .\build\windows\ && .\world-generator.exe )
linux
( cd ./build/linux/ && .\world-generator )