]> SALOME platform Git repositories - modules/yacs.git/blob - src/pmml/doc/doxygen/doxfiles/install.dox
Salome HOME
Merge branch V7_3_1_BR
[modules/yacs.git] / src / pmml / doc / doxygen / doxfiles / install.dox
1
2 /*!
3 \page pmml_install Configuring and Installing PMML from sources
4
5 The libraries in SALOME PMML 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 PMML_SRC directory.
9 The first step consists in preparing the configuration of the library :
10 \verbatim
11 cd ${PMML_SRC}
12 ./build_configure
13 \endverbatim
14
15 This will create SALOME PMML 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 ${PMML_SRC}
19 ./build_configure --without-kernel
20 \endverbatim
21
22 The library can then be configured :
23 \verbatim
24 mkdir ../PMML_BUILD
25 cd ../PMML_BUILD
26 ../PMML_SRC/configure --prefix=`pwd`/../PMML_INSTALL
27 \endverbatim
28 */