Files
musrfit/INSTALL
suter_a f3250ededc
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 19s
Update INSTALL
2025-10-15 07:58:50 +02:00

51 lines
1.7 KiB
Plaintext

#---------------------------------------------------------------------
# INSTALL
#---------------------------------------------------------------------
In the following it is assumed that the system variable ROOTSYS is already
defined and pointing to the place where CERN/ROOT is installed.
#----------------------------------
# Install via cmake tool chain
#----------------------------------
cmake minimal required version is 3.6.
musrfit supports only out-of-source cmake build! Hence, go to the musrfit
directory and
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=$ROOTSYS (or where ever musrfit should be installed)
cmake --build ./ --clean-first
cmake --install ./ (as superuser -- maybe)
/sbin/ldconfig (as superuser)
cmake configuration allows a couple of switches. For details check the documentation at
http://lmu.web.psi.ch/musrfit/user/MUSR/MusrFitSetup.html
An example with NeXus support and BMWlibs needed would look like this
mkdir build
cd build
cmake ../ -Dnexus=1 -DBMWlibs=1 -DCMAKE_INSTALL_PREFIX=$ROOTSYS
cmake --build ./ --clean-first
cmake --install ./ (as superuser -- maybe)
/sbin/ldconfig (as superuser)
In the optimal case everything is ready to be used ;-)
#----------------------------------
# Link to the documentation
#----------------------------------
More information regarding software requirements and the installation process
can be found here:
https://lmu.pages.psi.ch/musrfit-docu/setup-standard.html
#---------------------------------------------------------------------
# this is the end ...
#---------------------------------------------------------------------