Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 364 Bytes

HOW_TO_BUILD.md

File metadata and controls

25 lines (17 loc) · 364 Bytes

How To Build

Prerequisites

  • CMake
  • clang\gcc\Visual Studio

Build

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release 

or use the scripts/build.sh or scripts/build.cmd. Make sure that you use command prompt for VS on Win.

Run Tests

cd build
ctest -C Release --extra-verbose