Skip to content

How To Build The Project

Slava edited this page Jun 7, 2018 · 4 revisions

Supported compilers are Clang, GCC, MVSC with C++11 support and above.

Dependencies

  1. CMake
  2. Conan

In order to build the project use the appropriate build- or cmakegen- script from the scripts directory depending on your compiler and architecture, for example

Linux:

cd $PROJECT_DIR/scripts
chmod +x build-gcc-x64-release
./build-gcc-x64-release

macOS:

cd $PROJECT_DIR/scripts
chmod +x build-clang-x64-release
./build-clang-x64-release

Windows:

cd %PROJECT_DIR%/scripts
./build-msvc14-x64-release.cmd

In case these instructions don't work for you, please look at the travis build script might help.

Clone this wiki locally