Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 424 Bytes

BUILDING.md

File metadata and controls

29 lines (19 loc) · 424 Bytes

Building with CMake

Dependencies

The pgmfactors project requires Catch2, xtensor, and xtl.

Build

You can build using cmake:

cmake -S . -B build
cmake --build build

Install

Similarly:

cmake --install build

Here is the command for installing the release mode artifacts with a multi-configuration generator, like the Visual Studio ones:

cmake --install build --config Release