Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 585 Bytes

INSTALL.md

File metadata and controls

34 lines (28 loc) · 585 Bytes

Installation

Linux / macOS

If you do not care about build options, simply run:

make

in Terminal.

If you would like to customize build options, follow the below procedure:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release [OPTIONS]
make -j 4 install

Windows

If you do not care about build options, simply run:

make.bat

in DOS prompt.

If you would like to customize build options, follow the below procedure:

mkdir build
cd build
cmake .. [OPTIONS]
MSBuild -maxcpucount:4 /p:Configuration=Release INSTALL.vcxproj