Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 483 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 483 Bytes

Monad CXX

build

CMake

$ mkdir build
$ cd build
$ cmake ..
$ make
$ make install

Build additional tests with the cmake parameters -DDBUILD_TESTS=ON.

Nix

In order to just compile the tests and build the package, run:

$ nix-build
$ # see result/

For the incremental workflow, run:

$ nix-shell
$ mkdir build
$ cd build
$ cmake -DBUILD_TESTS=ON -G Ninja ..
$ ninja # or make
$ ctest

nix installation: https://nixos.org/download.html