Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 500 Bytes

installation.rst

File metadata and controls

26 lines (19 loc) · 500 Bytes

Build from Source

IRIS uses CMake (>= 2.8) for building, testing, and installing the library.

$ git clone git@github.com:ornl/iris.git
$ cd iris
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=<install_path> # $HOME/.iris is good for the install_path.
$ make -j
$ make install

To run the tests

$ cd ../tests
$ mkdir build
$ cd build
$ cmake ..
$ make -j
$ make test