Execute the windows_cmake_visual.bat script located in the scripts/ folder. It will create a build/ folder with a file ending in .sln in it.
Double click this file to open the project in Visual Studio.
Execute the following commands :
mkdir build
cd build
cmake ..
make
Do not forget to run the cmake .. command in the build/ directory each time a c++ file is added or removed from the project ! This ensures that each files get compiled in a corresponding .o output file during compilation, avoiding the need to recompile unchanged files each time another one is changed
The executable is named project (set in CMakeLists.txt).