Salome HOME
CMake:
[plugins/blsurfplugin.git] / SalomeBLSURFPLUGINConfig.cmake.in
1 # - Config file for the @PROJECT_NAME@ package
2 # It defines the following variables. 
3 # Specific to the pacakge @PROJECT_NAME@ itself:
4 #  @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
5 #
6
7 ###############################################################
8 #  Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
9 #
10 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
11 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
12 #
13 #  This library is free software; you can redistribute it and/or
14 #  modify it under the terms of the GNU Lesser General Public
15 #  License as published by the Free Software Foundation; either
16 #  version 2.1 of the License.
17 #
18 #  This library is distributed in the hope that it will be useful,
19 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 #  Lesser General Public License for more details.
22 #
23 #  You should have received a copy of the GNU Lesser General Public
24 #  License along with this library; if not, write to the Free Software
25 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
26 #
27 #  See http://www.salome-platform.org/ or
28 #  email : webmaster.salome@opencascade.com
29 ###############################################################
30
31 ### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE:
32 @PACKAGE_INIT@
33
34 # Load the dependencies for the libraries of @PROJECT_NAME@ 
35 # (contains definitions for IMPORTED targets). This is only 
36 # imported if we are not built as a subproject (in this case targets are already there)
37 IF(NOT TARGET BLSURFEngine AND NOT @PROJECT_NAME@_BINARY_DIR)
38   INCLUDE("@PACKAGE_SALOME_INSTALL_CMAKE_LOCAL@/@PROJECT_NAME@Targets.cmake")
39 ENDIF()
40
41 # Package root dir:
42 SET_AND_CHECK(BLSURFPLUGIN_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@")
43
44 # Include directories
45 SET_AND_CHECK(BLSURFPLUGIN_INCLUDE_DIRS "${BLSURFPLUGIN_ROOT_DIR_EXP}/@SALOME_INSTALL_HEADERS@")
46 SET(BLSURFPLUGIN_INCLUDE_DIRS "${BLSURFPLUGIN_INCLUDE_DIRS};@_SalomeBLSURFPLUGIN_EXTRA_HEADERS@")
47 SET(BLSURFPLUGIN_DEFINITIONS "@SMESH_DEFINITIONS@")
48
49 # Package specific environment variables
50 @_SalomeBLSURFPLUGIN_EXTRA_ENV_FULL@
51
52 #### Now the specificities
53
54 # Options exported by the package:
55 SET(SALOME_BLSURFPLUGIN_BUILD_TESTS @SALOME_BUILD_TESTS@)
56 SET(SALOME_BLSURFPLUGIN_BUILD_DOC   @SALOME_BUILD_DOC@)
57
58 # Advanced options
59 SET(SALOME_BLSURFPLUGIN_BUILD_GUI @SALOME_BUILD_GUI@)
60
61 # Level 1 prerequisites:
62 SET_AND_CHECK(SMESH_ROOT_DIR_EXP "@PACKAGE_SMESH_ROOT_DIR@")
63
64 # For all prerequisites, load the corresponding targets if the package was used 
65 # in CONFIG mode. This ensures dependent projects link correctly
66 # without having to set LD_LIBRARY_PATH:
67 SET(_PREREQ MESHGEMS)
68 SET(_PREREQ_CONFIG_DIR "@MESHGEMS_DIR@")
69 LIST(LENGTH _PREREQ_CONFIG_DIR _list_len)
70 # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
71 MATH(EXPR _range "${_list_len}-1")
72 FOREACH(_p RANGE ${_range})
73   LIST(GET _PREREQ            ${_p} _pkg    )
74   LIST(GET _PREREQ_CONFIG_DIR ${_p} _pkg_dir)
75   IF(_pkg_dir)
76      MESSAGE(STATUS "===> Reloading targets from ${_pkg} ...")
77      FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE 
78           PATHS "${_pkg_dir}" 
79           NO_DEFAULT_PATH)
80   ENDIF()
81 ENDFOREACH()
82
83 # Installation directories
84 SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
85 SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
86 SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
87 SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
88 SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
89 SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
90 SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
91 SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
92 SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@") 
93 SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
94 SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
95 SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
96 SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
97 SET(SALOME_INSTALL_DOC "@SALOME_INSTALL_DOC@")
98 SET(SALOME_INSTALL_AMCONFIG_LOCAL "@SALOME_INSTALL_AMCONFIG_LOCAL@")
99
100 # Include SMESH targets if they were not already loaded:
101 IF(NOT (TARGET SMESHEngine))
102   INCLUDE("${SMESH_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeSMESHTargets.cmake")
103 ENDIF()
104
105 # Exposed BLSURFPLUGIN targets:
106 SET(BLSURFPLUGIN_BLSURFEngine BLSURFEngine)
107 SET(BLSURFPLUGIN_BLSURFPluginGUI BLSURFPluginGUI)
108 SET(BLSURFPLUGIN_SalomeIDLBLSURFPLUGIN SalomeIDLBLSURFPLUGIN)