Very small and simple voxel landscape generator
- Download Visual Studio Community
- Download SDL2 and place the
includeandlibfolders insideexternal - Place the SDL.dll on the root folder
- Download GLM and place the
includefolder inside theexternalfolder - With CMake define the SDL2 and GLM includes to be the external folder
- Generate and Open the solution on Visual Studio.
- Install sdl2 (and g++) with
sudo apt install cmake libsdl2-dev g++ - Download GLM and place the
includefolder inside theexternalfolder - Run
cmake .on the root folder. - Run
makeon the generated Makefile, and then ./raytracer
Sources:
LearnOpenGL website/book
Lets make a voxel engine
Perlin noise tutorial
Minecraft clone in C++
