1 # Copyright (C) 2013-2014 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # - Config file for the @PROJECT_NAME@ package
21 # It defines the following variables.
22 # Specific to the pacakge @PROJECT_NAME@ itself:
23 # @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
26 ### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE:
29 # Load the dependencies for the libraries of @PROJECT_NAME@
30 # (contains definitions for IMPORTED targets). This is only
31 # imported if we are not built as a subproject (in this case targets are already there)
32 IF(NOT TARGET HexoticEngine AND NOT @PROJECT_NAME@_BINARY_DIR)
33 INCLUDE("@PACKAGE_SALOME_INSTALL_CMAKE_LOCAL@/@PROJECT_NAME@Targets.cmake")
37 SET_AND_CHECK(HexoticPLUGIN_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@")
40 SET_AND_CHECK(HexoticPLUGIN_INCLUDE_DIRS "${HexoticPLUGIN_ROOT_DIR_EXP}/@SALOME_INSTALL_HEADERS@")
41 SET(HexoticPLUGIN_INCLUDE_DIRS "${HexoticPLUGIN_INCLUDE_DIRS};@_SalomeHexoticPLUGIN_EXTRA_HEADERS@")
42 SET(HexoticPLUGIN_DEFINITIONS "@SMESH_DEFINITIONS@")
44 # Package specific environment variables
45 @_SalomeHexoticPLUGIN_EXTRA_ENV_FULL@
47 #### Now the specificities
49 # Options exported by the package:
50 SET(SALOME_HexoticPLUGIN_BUILD_TESTS @SALOME_BUILD_TESTS@)
51 SET(SALOME_HexoticPLUGIN_BUILD_DOC @SALOME_BUILD_DOC@)
54 SET(SALOME_HexoticPLUGIN_BUILD_GUI @SALOME_BUILD_GUI@)
55 SET(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN @SALOME_HEXOTICPLUGIN_USEBLSURFPLUGIN@)
57 # Level 1 prerequisites:
58 IF(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
59 SET_AND_CHECK(BLSURFPLUGIN_ROOT_DIR_EXP "@PACKAGE_BLSURFPLUGIN_ROOT_DIR@")
60 LIST(APPEND HexoticPLUGIN_DEFINITIONS "-DWITH_BLSURFPLUGIN")
61 ELSE(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
62 SET_AND_CHECK(SMESH_ROOT_DIR_EXP "@PACKAGE_BLSURFPLUGIN_ROOT_DIR@")
63 IF(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
66 # For all prerequisites, load the corresponding targets if the package was used
67 # in CONFIG mode. This ensures dependent projects link correctly
68 # without having to set LD_LIBRARY_PATH:
69 SET(_PREREQ @_PREREQ_LIST@)
70 SET(_PREREQ_CONFIG_DIR @_PREREQ_DIR_LIST@)
71 SET(_PREREQ_COMPONENTS "@_PREREQ_COMPO_LIST@")
72 LIST(LENGTH _PREREQ_CONFIG_DIR _list_len)
73 IF(NOT _list_len EQUAL 0)
74 # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
75 MATH(EXPR _range "${_list_len}-1")
76 FOREACH(_p RANGE ${_range})
77 LIST(GET _PREREQ ${_p} _pkg )
78 LIST(GET _PREREQ_CONFIG_DIR ${_p} _pkg_dir)
79 LIST(GET _PREREQ_COMPONENTS ${_p} _pkg_compo)
80 MESSAGE(STATUS "===> Reloading targets from ${_pkg} ...")
82 FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE
86 STRING(REPLACE "," ";" _compo_lst "${_pkg_compo}")
87 MESSAGE(STATUS "===> (components: ${_pkg_compo})")
88 FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE
89 COMPONENTS ${_compo_lst}
96 # Installation directories
97 SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
98 SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
99 SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
100 SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
101 SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
102 SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
103 SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
104 SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
105 SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@")
106 SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
107 SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
108 SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
109 SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
110 SET(SALOME_INSTALL_DOC "@SALOME_INSTALL_DOC@")
111 SET(SALOME_INSTALL_AMCONFIG_LOCAL "@SALOME_INSTALL_AMCONFIG_LOCAL@")
113 # Include SMESH or BLSURFPLUGIN targets if they were not already loaded:
114 IF(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
115 IF(NOT (TARGET BLSURFEngine))
116 INCLUDE("${BLSURFPLUGIN_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeBLSURFPLUGINTargets.cmake")
118 ELSE(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
119 IF(NOT (TARGET SMESHEngine))
120 INCLUDE("${SMESH_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeSMESHTargets.cmake")
122 ENDIF(SALOME_HEXOTICPLUGIN_USE_BLSURFPLUGIN)
124 # Exposed HexoticPLUGIN targets:
125 SET(HexoticPLUGIN_HexoticEngine HexoticEngine)
126 SET(HexoticPLUGIN_HexoticPluginGUI HexoticPluginGUI)
127 SET(HexoticPLUGIN_SalomeIDLHexoticPLUGIN SalomeIDLHexoticPLUGIN)