Build
Linux
in root of project folder,
mkdir build && cd build && cmake .. && make
Windows
From developer command prompt in root of project folder,
mkdir build
cd build
cmake -G "Visual Studio 15 Win64" ..
cmake will output a .sln solution file in the build folder that can then be opened and compiled from within Visual Studio.
Apple
You tell me..