Salome HOME
Thanks CVS for this fantastic management of directories...
[tools/medcoupling.git] / doc / doxygen / doxfiles / install.dox
1
2 /*!
3 \page paramedmem_install Configuring and Installing MED from sources
4
5 The libraries in SALOME MED can be configured in several manners so that it can run inside or outside the Salome platform.
6 Also, partitioning and parallel functionalities are optional.
7
8 The sources of the library are located in the \a MED_SRC directory.
9 The first step consists in preparing the configuration of the library :
10 \verbatim
11 cd ${MED_SRC}
12 ./build_configure
13 \endverbatim
14
15 This will create SALOME MED libraries with link to the SALOME Kernel.
16 Sometimes, if it is desirable to have a standalone version of the library to be used independently from SALOME, use :
17 \verbatim
18 cd ${MED_SRC}
19 ./build_configure --without-kernel
20 \endverbatim
21
22 The library can then be configured :
23 \verbatim
24 mkdir ../MED_BUILD
25 cd ../MED_BUILD
26 ../MED_SRC/configure --prefix=`pwd`/../MED_INSTALL
27 \endverbatim
28
29 This will configure the library without splitting functionalities. ParaMEDMEM will be compiled if an MPI version has been found.
30
31 The following options can be useful to configure SALOME MED :
32 - \a --enable-splitter=yes will trigger the compilation of the MEDSPLITTER tool,
33 - \a --with-metis=${METISDIR} will specify a location for the METIS library,
34 - \a --with-scotch=${SCOTCHDIR} will specify a location for the SCOTCH library,
35 - \a --with-med3=${MED3DIR} specifies a location for MED-file library,
36 - \a --with-hdf5=${HDF5DIR} specifies a location for the HDF5 library (must be the same as that used for the MED-file library)
37 - \a --with-lam=${LAMDIR} specifies an install path for a LAM MPI library,
38 - \a --with-mpich=${MPICHDIR} specifies an install path for a MPICH-1 library.
39 */