pmflib-build

March 1, 2020 ยท View on GitHub

Utilities for testing and building of the PMFLib package.

Building and Installation

Testing Mode

$ git clone --recursive https://github.com/kulhanek/pmflib-build.git
$ cd pmflib-build
$ ./build-utils/00.init-links.sh
$ ./01.pull-code.sh
$ ./04.build-inline.sh   # build the code inline in src/

Production Build into the Infinity software repository

$ git clone --recursive https://github.com/kulhanek/pmflib-build.git
$ cd pmflib-build
$ ./build-utils/00.init-links.sh
$ ./01.pull-code.sh
$ ./10.build-final.sh  # standard build

Production Build into Custom Directory

$ git clone --recursive https://github.com/kulhanek/pmflib-build.git
$ cd pmflib-build
$ ./build-utils/00.init-links.sh
$ ./01.pull-code.sh
$ cmake -DCMAKE_INSTALL_PREFIX=/path/to/pmflib/installation/directory
$ make
$ make install