Configuration & Installation - Overdrivr/ZNoise GitHub Wiki

Requirements

ZNoise requires a C++11 compatible compiler. This is due to the two following elements:

  • delete of copy operators (regarding dependency injection in FBM.cpp and HybridMultiFractal.cpp)

  • use of new C++11 random number generators in the library

If your compiler has only partial support for C++11, chances are it's nevertheless supporting these functions. Try to add the -std=c++11 flag to your project's compiling options (or -std=gnu++11 for some compilers).

If that doesn't work, install and use a compiler that does support C++11 features. You can use TDM-GCC distribution for instance (http://tdm-gcc.tdragon.net/).

Installation

The installation is straightforward. Simply add the /include and /source folders to your project, and you're good to go.

⚠️ **GitHub.com Fallback** ⚠️