* The last step is to run the `cmake /where/are/your/sources/files` and `make` commands in your build directory - typically `/ssd/YOUR_NAME/build`
# Recompile Feel++ library (difficulty: average)
Load feel++ dependency libraries
```sh
module load feelpp.profile
```
Place yourself in a directory. Then clone Feel++ sources from github, then place yourself in a build directory, execute cmake to generate the makefiles.
```sh
git clone git@github.com:feelpp/feelpp.git
mkdir build &&cd build
../feelpp/configure -r
```
At this stage, you can compile the whole framework as usual (NB it takes a long time)
```sh
make
make install# You should precise the --prefix option in configure to change default path.
```
A faster way is to compile only the desired application (it will only compile the required libraries only), for example