Salome HOME
35dd2a7bcc1558ec70038d2f8aa6ef0589c77f05
[tools/documentation.git] / dev / CMakeLists.txt
1 # Copyright (C) 2012-2021  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(${_module}_ROOT_DIR $ENV{${_module}_ROOT_DIR})
36   IF(${_module}_ROOT_DIR)
37     SALOME_INSTALL_MODULE_DOC(${${_module}_ROOT_DIR}/share/doc/salome/dev/${_module}
38                               DESTINATION ${SALOME_INSTALL_DOC_DEV})
39   ENDIF()
40 ENDFOREACH()
41
42 # Special processing for MEDCoupling
43 # ==================================
44
45 SET(MEDCOUPLING_ROOT_DIR $ENV{MEDCOUPLING_ROOT_DIR})
46 IF(MEDCOUPLING_ROOT_DIR)
47   SALOME_INSTALL_MODULE_DOC(${MEDCOUPLING_ROOT_DIR}/share/doc/developer
48                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling)
49   SALOME_INSTALL_MODULE_DOC(${MEDCOUPLING_ROOT_DIR}/share/doc/tutorial
50                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling)
51   SALOME_INSTALL_MODULE_DOC(${MEDCOUPLING_ROOT_DIR}/share/doc/user
52                             DESTINATION ${SALOME_INSTALL_DOC_DEV}/MEDCoupling
53                             INDEX html)
54 ENDIF()