Installation

Prerequisite

  1. The TRIQS toolbox in version 2.0. (see TRIQS installation instruction). In the following, we will suppose that it is installed in the path_to_triqs directory.

Installation steps

  1. Download the sources from github:

    $ git clone https://github.com/TRIQS/omegamaxent_interface
    
  2. Create an empty build directory where you will compile the code:

    $ mkdir omegamaxent_interface/build && cd omegamaxent_interface/build
    
  3. In the build directory call cmake:

    $ cmake ..
    
  4. Compile the code, run the tests and install the application:

    $ make
    $ make test
    $ make install
    

Custom CMake options

Using the following syntax:

$ cmake -DOPTION1=value1 -DOPTION2=value2 ..

you can pass the following options to CMake:

Options Syntax
Specify an installation path other than path_to_triqs -DCMAKE_INSTALL_PREFIX=my_maxent_path
Build the documentation locally -DBuild_Documentation=ON