Salome HOME
remove SalomeOnDemandTK
[modules/kernel.git] / README
diff --git a/README b/README
index ec06c9d5bf155cc9ab7c5c3802bcea34e1ed3eb8..6cc992522f5f8dcac15e5da78ad3ec2e536f66b5 100644 (file)
--- a/README
+++ b/README
-#
-# =================================================================
-# Installation instructions, up to date for 2.2.0 version
-# =================================================================
-#
+*******************
+About SALOME KERNEL
+*******************
 
-You'll find here generic instructions for installing the SALOME2 platform.
+SALOME KERNEL module implements general services of SALOME platform.
 
+For more information please visit the SALOME platform web site:
 
-1. Quick Overview
-   --------------
+  <https://www.salome-platform.org/>
 
-First of all, you have to check (or install if needed) the dependant
-software programs on your system. These programs are:
+=======
+License
+=======
 
-- common development tools as gcc, automake, autoconf and libtools.
-- third party softwares used in SALOME building or runtime process
-  (python, OCC, VTK, ...)
+SALOME platform is distributed under the GNU Lesser General Public License.
+See COPYING file for more details.
 
-Further details can be found in sections [2] and [3].
+============
+Installation
+============
 
-If the dependencies are installed on your system, then you have to set
-your shell environment to get access to the software components
-(cf. [4]. "Preparing the shell environment").
+--------------
+Pre-requisites
+--------------
 
-The next step is to install the KERNEL (cf. [5] "Installing KERNEL"):
-$ mkdir <kernel_build>
-$ mkdir <kernel_install>
-$ cd <kernel_src>
-$ ./build_configure
-$ cd <kernel_build>
-$ <kernel_src>/configure --prefix=<kernel_install>
-$ make
-$ make install
+SALOME platform relies on a set of third-party software; some of them are needed
+at build time only, while other ones are needed in runtime also.
 
-Then, the SALOME components GEOM, MED, VISU, ... can be installed
-with a similar procedure (cf. [6]).
+For more information about the pre-requisites please visit SALOME platform web
+site:
 
-Eventually, the platform can be run by executing the shell script
-runSalome (cf. [7]). Here, somme additionnal variables have to be set
-to describe the SALOME runtime configuration (<COMPONENT>_ROOT_DIR,
-OMNIORB_CONFIG)
+* Check Release Notes and Software Requirements of the latest SALOME release at
 
-The following provides you with specific instructions for each step.
+  <https://www.salome-platform.org/?page_id=15/>
 
+------------------
+Basic Installation
+------------------
 
-2. System configuration
-   --------------------
+The build procedure of the SALOME platform is implemented with CMake.
+In order to build the module you have to do the following actions: 
 
-We suggest the following configuration for building process:
-- gcc-3.2 (3.2.3 if gcc3-2 is not the native compiler of your distribution)
-- automake-1.9 (only aclocal is used)
-- autoconf-2.59
-- libtool-1.5.6
+1. Set up environment for pre-requisites (see "Pre-requisites" section above).
 
-remarks :
-- This is the minimum level of automake,autoconf & libtool, if you need
-  to compile all the third party softwares (included OpenCascade 5.2).
-- SALOME2 is compiled and tested on a RedHat 8.0 version, with
-  - gcc-3.2
-  and
-  - automake-1.6.3
-  - autoconf-2.53
-  - libtool-1.4.2
-  This level of automake,autoconf & libtool is OK if you do not need to
-  recompile OpenCascade 5.2.
+2. Create a build directory:
 
-3. Third-party dependencies
-   ------------------------
+   % mkdir KERNEL_BUILD
 
-The SALOME platform relies on a set of third-party softwares. The
-current version depends on:
+3. Configure the build procedure:
 
- CAS-5.2               OpenCascade (try binaries,a source patch is needed)
- PyQt-3.3.2            Python-Qt Wrapper
- Python-2.2.2          Python interpreter
- SWIG-1.3.17           SWIG library
- VTK-4.2.2             VTK 3D-viewer
- boost-1_31_0          C++ library (only include templates are used)
- hdf5-1.4.4            Files Database library
- med-2.1.6             MED Data Format support for file records 
- omniORB-3.0.5         ORB used in SALOME
- qt-x11-free-3.0.5     Qt library
- qwt-0.4.1             Graph components for Qt
- sip-3.3.2             langage binding software 
- tcl8.3                        Tcl interpreter
- tk8.3                 Tk widgets
+   % cd KERNEL_BUILD
+   % cmake -DCMAKE_BUILD_TYPE=<mode> -DCMAKE_INSTALL_PREFIX=<installation_directory> <path_to_src_dir>
 
-And, in order to build the documentation:
+   where
+   - <mode> is either Release or Debug (default: Release);
+   - <installation_directory> is a destination folder to install SALOME KERNEL
+      module (default: /usr); 
+   - <path_to_src_dir> is a path to the SALOME KERNEL sources directory.
 
- doxygen-1.3-rc2
- graphviz-1.9
+   Note: by default (if CMAKE_INSTALL_PREFIX option is not given), SALOME KERNEL
+   module will be configured for installation to the /usr directory that requires
+   root permissions to complete the installation.
 
-Additionnal software may be installed for optional features: 
+4. Build and install:
 
- netgen4.3_calibre3_gcc3.2.3.tgz
- tix8.1.4_calibre3_gcc3.2.3.tgz
- openpbs-2.3.16
- lsf-???
+   % make
+   % make install
 
-######
-###### To Do -------------------------
-######
-- Instructions for installing these software programs can be found in a
-  special note doc/configuration_examples/install-prerequis.
-- Installation shell scripts are also provided.
-  These scripts have to be adapted to your own configuration.
+   This will install SALOME KERNEL module to the <installation_directory>
+   specified to cmake command on the previous step.
 
-- See doc/configuration_examples/*
-######
-###### To Do -------------------------
-######
+-------------------
+Custom installation
+-------------------
 
-In the following, we assume that all the third-party softwares are
-installed in the same root directory, named <salomeroot>/prerequis.
-Then, your file system should probably look like:
+SALOME KERNEL module supports a set of advanced configuration options;
+for more details learn CMakeLists.txt file in the root source directory.
 
-<salomeroot>/prerequis/Python-2.2.2
-<salomeroot>/prerequis/omniORB-3.0.5
-<salomeroot>/prerequis/qt-x11-free-3.0.5
-...
+You can also use other options of cmake command to customize your installation.
+Learn more about available options by typing
 
+   % cmake --help
 
-4. Preparing the shell environment
-   -------------------------------
+=============
+Documentation
+=============
 
-Some variables have to be set to get acces to third-party software
-components (include files, executable, library, ...) during building
-process and runtime.
+The directory doc contains additional documentation file of SALOME KERNEL module.
 
-The shell file prerequis.sh, embedded in the KERNEL source package,
-provides a template for setting those variables. In this example, all the
-softwares are supposed to be installed in the same root directory,
-named here INSTALLROOT.
+===============
+Troubleshooting
+===============
 
-Copy the prerequis.sh in a working directory and adjust the settings
-to your own configuration. To get the shell prepared, just
-execute the following command in the building shell:
-
-$ source prerequis.sh
-
-(we assume here a ksh or bash mode)
-
-
-5. Installing the KERNEL component
-   -------------------------------
-
-We use here the notation <kernel_src> to specify the source directory
-of the KERNEL component. The shell environment is supposed to have
-been set (cf. 4).
-
-Installing the KERNEL from a source package needs three directories:
-
-- the source directory, denoted here by <kernel_src>.
-
-- the build directory, denoted by <kernel_build> in the following. This
-  directory can't be the same directory as <kernel_src>.
-
-- the install directory, denoted by <kernel_install> in the following. This
-  directory can't be the same directory as <kernel_src> or
-  <kernel_build>.
-
-The installing process is:
-
-STEP 1: preparing directories
-create the <kernel_build> and the <kernel_install> directories.
-$ mkdir <kernel_build>
-$ mkdir <kernel_install>
-
-STEP 2: build configure script
-go to <kernel_src> directory and generate the "configure" script.
-$ cd <kernel_src>
-$ ./build_configure
-
-If it doesn't work, check your system automake tools as specified in
-section [2].
-
-STEP 3: configure the building process
-go to the build directory and execute the configuration process:
-$ cd <kernel_build>
-$ <kernel_src>/configure --prefix=<kernel_install>
-
-Note that <kernel_install> must be an absolute path.
-
-When the configure process is complete, check the status of
-third-party softwares detection. You should have a status like:
-
----------------------------------------------
-Summary
----------------------------------------------
-
-Configure
-           cc : yes
-        boost : yes
-     lex_yacc : yes
-       python : yes
-         swig : yes
-      threads : yes
-       OpenGL : yes
-           qt : yes
-          vtk : yes
-         hdf5 : yes
-         med2 : yes
-      omniORB : yes
-          occ : yes
-          sip : yes
-         pyqt : yes
-          qwt : yes
-      doxygen : yes
-     graphviz : no
-      openpbs : no
-          lsf : no
-
-Default ORB   : omniORB
-
----------------------------------------------
-
-If a software get a status "no", then it's not "seen" in the system:
-- the software is not installed, or
-- the shell environment is not set correctly. 
-
-In this example, the software programs graphviz, openpbs and lsf are not
-installed (optional for most usages).
-
-
-STEP 4 : Building the binary files
-Execute make in the <kernel_build> directory:
-$ make
-
-
-STEP 5: Installing binary files, scripts and documentation
-Execute install target in the <kernel_build> directory:
-$ make install
-
-
-6. Installing the SALOME components
-   --------------------------------
-
-Installing a component <COMPONENT> is done by following the same
-instructions as given for the KERNEL, replacing KERNEL by
-<COMPONENT> (build_configure, configure, make, make install).
-
-You just have to be aware of the dependencies between components:
-
-- MED    depends on KERNEL
-- GEOM   depends on KERNEL
-- SMESH  depends on KERNEL, MED, GEOM
-- VISU   depends on KERNEL, MED
-- SUPERV depends on KERNEL
-
-For example, installing the component SMESH needs the previous
-installation of the KERNEL component, and then the GEOM and MED components.
-
-The building process uses the variables <COMPONENT>_ROOT_DIR to
-localize the dependant components. The variables must be set to the
-install path directory of the components <COMPONENT> (ex:
-KERNEL_ROOT_DIR=<kernel_install>). 
-In the above example, the three variables KERNEL_ROOT_DIR,
-GEOM_ROOT_DIR and MED_ROOT_DIR have to be set before configuring the
-building process of the SMESH component (STEP 3).
-
-
-7. Runtime
-   -------
-
-To run the SALOME platform, the procedure is:
-- set the shell environment to get acces to third-party softwares
-
-$ source prerequis.sh
-
-- define the SALOME configuration by setting the whole set of
-  variables <COMPONENT>_ROOT_DIR. Here, you just have to set the
-  kernel and the components you need.
-
-$ export KERNEL_ROOT_DIR=<kernel_install>
-$ export MED_ROOT_DIR=<med_install>
-$ ...
-
-- define the CORBA configuration file by setting the variable
-  OMNIORB_CONFIG. This variable must be set to a writable file
-  path. The file may be arbitrary chosen and doesn't need to exist
-  before running. We suggest:
-
-$ export OMNIORB_CONFIG=$HOME/.omniORB.cfg
-
-- run the SALOME platform by executing the script runSalome
-$ $KERNEL_ROOT_DIR/bin/salome/runSalome
-
-
-8. Suggestions and advices
-   ----------------------
-
-For convenience or customization, we suggest the following organisation:
-
-- chose and create a root directory for the SALOME platform, say
-  <salomeroot>.
-
-- install the third-party softwares in a sub-directory "prerequis"
-
-- install the SALOME components in a sub-directory "SALOME2"
-
-- make personnal copies of the files prerequis.sh and runSalome in
-  <salomeroot>.
-
-$ cp <kernel_src>/prerequis.sh <rundir>/.
-$ cp <kernel_install>/bin/salome/runSalome <rundir>/.
-
-Edit the file prerequis.sh and adjust it to your own configuration.
-
-- define the SALOME2 configuration
-This step consists in setting the KERNEL_ROOT_DIR, the whole set of
-variables <COMPONENT>_ROOT_DIR you need, and the OMNIORB_CONFIG
-variable.
-We suggest to create a shell file envSalome.sh containing those
-settings. Then the configuration consists in loading envSalome.sh in
-the runtime shell:
-
-$ source envSalome.sh
-
-- When installed with this file organisation, running SALOME is done
-  with the following shell commands:
-
-$ source <salomeroot>/prerequis.sh
-$ source <salomeroot>/envSalome.sh
-$ ./runSalome
-
-
-# =================================================================
-# End of file
+Please, send a mail to webmaster.salome@opencascade.com.