Salome HOME
8a9239a4a284736d818e38ce4a1f97f2d3f07ddb
[tools/documentation.git] / dev / CMakeLists.txt
1 # Copyright (C) 2012-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # Install content from subdirs
21 # ============================
22
23 ADD_SUBDIRECTORY(git)
24 ADD_SUBDIRECTORY(cmake)
25
26 # Install [dev] documentation for SALOME modules
27 # ==============================================
28
29 SET(_modules
30   FIELDS
31   PARAVIS
32 )
33
34 FOREACH(_module ${_modules})
35   SET(_root_dir $ENV{${_module}_ROOT_DIR})
36   IF(_root_dir)
37     FILE(TO_CMAKE_PATH "${_root_dir}/share/doc/salome/dev/${_module}" _doc_path)
38     SALOME_INSTALL_MODULE_DOC("${_doc_path}"
39                               DESTINATION ${SALOME_INSTALL_DOC_DEV})
40   ENDIF()
41 ENDFOREACH()
42
43 # Special processing for MEDCoupling
44 # ==================================
45
46 SET(MEDCOUPLING_ROOT_DIR $ENV{MEDCOUPLING_ROOT_DIR})
47 IF(MEDCOUPLING_ROOT_DIR)
48   FILE(TO_CMAKE_PATH "${MEDCOUPLING_ROOT_DIR}" _root_dir)
49   SALOME_INSTALL_MODULE_DOC("${_root_dir}/share/doc/developer"
50                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling)
51   SALOME_INSTALL_MODULE_DOC("${_root_dir}/share/doc/tutorial"
52                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling)
53   SALOME_INSTALL_MODULE_DOC("${_root_dir}/share/doc/user"
54                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling
55                             INDEX html)
56 ENDIF()