You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Requirements

The enviroment must be set up according to the guide

OpenCMT Blast Furnace Simulator: building the code

The source code for the Image Builder is stored in Baltig:

git clone https://baltig.infn.it/muontomography/muBlast-simulator.git
cd muBlast-simulator

These are the steps required for building the Image Builder and install it in the system:

cmake3 -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo \
       -DPACKAGE_INSTALL_LIB_DIR=/usr/lib64 \
       -DPACKAGE_INSTALL_INC_DIR=/usr/include \
       -DPACKAGE_INSTALL_DATA_DIR=/usr/share \
       -DBOOST_INCLUDEDIR=/usr/include/boost169 \
       -DBOOST_LIBRARYDIR=/usr/lib64/boost169 ..
make
sudo make install

The libraries and header files are installed in the standard locations for the CentOS 7 system, so there's no need for further configurations.

  • No labels