Salome HOME
CMake: improved reloading of dependent CMake targets in Config file to
[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 @_PREREQ_LIST@)
68 SET(_PREREQ_CONFIG_DIR @_PREREQ_DIR_LIST@)
69 SET(_PREREQ_COMPONENTS "@_PREREQ_COMPO_LIST@")
70 LIST(LENGTH _PREREQ_CONFIG_DIR _list_len)
71 IF(NOT _list_len EQUAL 0)
72   # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
73   MATH(EXPR _range "${_list_len}-1")
74   FOREACH(_p RANGE ${_range})  
75     LIST(GET _PREREQ            ${_p} _pkg    )
76     LIST(GET _PREREQ_CONFIG_DIR ${_p} _pkg_dir)
77     LIST(GET _PREREQ_COMPONENTS ${_p} _pkg_compo)
78     MESSAGE(STATUS "===> Reloading targets from ${_pkg} ...")
79     IF(NOT _pkg_compo)
80       FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE 
81           PATHS "${_pkg_dir}" 
82           NO_DEFAULT_PATH)
83     ELSE()
84       STRING(REPLACE "," ";" _compo_lst "${_pkg_compo}")
85       MESSAGE(STATUS "===> (components: ${_pkg_compo})")
86       FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE
87           COMPONENTS ${_compo_lst} 
88           PATHS "${_pkg_dir}"
89           NO_DEFAULT_PATH)
90     ENDIF()
91   ENDFOREACH()
92 ENDIF()
93
94 # Installation directories
95 SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
96 SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
97 SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
98 SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
99 SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
100 SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
101 SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
102 SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
103 SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@") 
104 SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
105 SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
106 SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
107 SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
108 SET(SALOME_INSTALL_DOC "@SALOME_INSTALL_DOC@")
109 SET(SALOME_INSTALL_AMCONFIG_LOCAL "@SALOME_INSTALL_AMCONFIG_LOCAL@")
110
111 # Include SMESH targets if they were not already loaded:
112 IF(NOT (TARGET SMESHEngine))
113   INCLUDE("${SMESH_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeSMESHTargets.cmake")
114 ENDIF()
115
116 # Exposed BLSURFPLUGIN targets:
117 SET(BLSURFPLUGIN_BLSURFEngine BLSURFEngine)
118 SET(BLSURFPLUGIN_BLSURFPluginGUI BLSURFPluginGUI)
119 SET(BLSURFPLUGIN_SalomeIDLBLSURFPLUGIN SalomeIDLBLSURFPLUGIN)