A simple 2D Map Generator using my SimplexNoise and CImg
Copyright (c) 2013-2018 Sébastien Rombauts ([email protected])
2D image with only 1 octave of 2D Simplex Noise:

2D image with 4 octaves of 2D Simplex Noise:

2D image with 7 octaves of 2D Simplex Noise:

git submodule init
git submodule updatemkdir build
cd build
cmake .. # cmake .. -G "Visual Studio 15 2017"
cmake --build . # make
ctest . # make testmkdir Debug
cd Debug
cmake .. -DCMAKE_BUILD_TYPE=Debug # -G "Unix Makefiles"
cmake --build . # make
ctest . # make test