Salome HOME
Version update: 7.4.1
[samples/pyhello.git] / SalomePYHELLOConfig.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-2014  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, or (at your option) any later version.
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 email : webmaster.salome@opencascade.com
28 #
29
30 ### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE:
31 @PACKAGE_INIT@
32
33
34 # Package root dir:
35 SET_AND_CHECK(PYHELLO_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@")
36
37 # Include directories
38 SET_AND_CHECK(PYHELLO_INCLUDE_DIRS "${PYHELLO_ROOT_DIR_EXP}/@SALOME_INSTALL_HEADERS@")
39 SET(PYHELLO_INCLUDE_DIRS "${PYHELLO_INCLUDE_DIRS};@_SalomePYHELLO_EXTRA_HEADERS@")
40 SET(PYHELLO_DEFINITIONS "@GUI_DEFINITIONS@")
41
42 # Package specific environment variables
43 @_SalomePYHELLO_EXTRA_ENV_FULL@
44
45 # Load the dependencies for the libraries of @PROJECT_NAME@ 
46 # (contains definitions for IMPORTED targets). This is only 
47 # imported if we are not built as a subproject (in this case targets are already there)
48 IF(NOT TARGET SalomeIDLPYHELLO AND NOT @PROJECT_NAME@_BINARY_DIR)
49   INCLUDE("${PYHELLO_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE_LOCAL}/SalomePYHELLOTargets.cmake")
50 ENDIF()   
51
52 #### Now the specificities
53
54 # Options exported by the package:
55 SET(SALOME_PYHELLO_BUILD_TESTS @SALOME_BUILD_TESTS@)
56 SET(SALOME_PYHELLO_BUILD_DOC   @SALOME_BUILD_DOC@)
57
58 # Level 1 prerequisites:
59 SET_AND_CHECK(GUI_ROOT_DIR_EXP "@PACKAGE_GUI_ROOT_DIR@")
60
61 # For all prerequisites, load the corresponding targets if the package was used 
62 # in CONFIG mode. This ensures dependent projects link correctly
63 # without having to set LD_LIBRARY_PATH:
64 SET(_PREREQ @_PREREQ_LIST@)
65 SET(_PREREQ_CONFIG_DIR @_PREREQ_DIR_LIST@)
66 SET(_PREREQ_COMPONENTS "@_PREREQ_COMPO_LIST@")
67 LIST(LENGTH _PREREQ_CONFIG_DIR _list_len)
68 IF(NOT _list_len EQUAL 0)
69   # Another CMake stupidity - FOREACH(... RANGE r) generates r+1 numbers ...
70   MATH(EXPR _range "${_list_len}-1")
71   FOREACH(_p RANGE ${_range})  
72     LIST(GET _PREREQ            ${_p} _pkg    )
73     LIST(GET _PREREQ_CONFIG_DIR ${_p} _pkg_dir)
74     LIST(GET _PREREQ_COMPONENTS ${_p} _pkg_compo)
75     MESSAGE(STATUS "===> Reloading targets from ${_pkg} ...")
76     IF(NOT _pkg_compo)
77       FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE 
78           PATHS "${_pkg_dir}" 
79           NO_DEFAULT_PATH)
80     ELSE()
81       STRING(REPLACE "," ";" _compo_lst "${_pkg_compo}")
82       MESSAGE(STATUS "===> (components: ${_pkg_compo})")
83       FIND_PACKAGE(${_pkg} REQUIRED NO_MODULE
84           COMPONENTS ${_compo_lst} 
85           PATHS "${_pkg_dir}"
86           NO_DEFAULT_PATH)
87     ENDIF()
88   ENDFOREACH()
89 ENDIF()
90
91 # Installation directories
92 SET(SALOME_INSTALL_BINS "@SALOME_INSTALL_BINS@")
93 SET(SALOME_INSTALL_LIBS "@SALOME_INSTALL_LIBS@")
94 SET(SALOME_INSTALL_IDLS "@SALOME_INSTALL_IDLS@")
95 SET(SALOME_INSTALL_HEADERS "@SALOME_INSTALL_HEADERS@")
96 SET(SALOME_INSTALL_SCRIPT_SCRIPTS "@SALOME_INSTALL_SCRIPT_SCRIPTS@")
97 SET(SALOME_INSTALL_SCRIPT_DATA "@SALOME_INSTALL_SCRIPT_DATA@")
98 SET(SALOME_INSTALL_SCRIPT_PYTHON "@SALOME_INSTALL_SCRIPT_PYTHON@")
99 SET(SALOME_INSTALL_APPLISKEL_SCRIPTS "@SALOME_INSTALL_APPLISKEL_SCRIPTS@")
100 SET(SALOME_INSTALL_APPLISKEL_PYTHON "@SALOME_INSTALL_APPLISKEL_PYTHON@") 
101 SET(SALOME_INSTALL_CMAKE_LOCAL "@SALOME_INSTALL_CMAKE_LOCAL@")
102 SET(SALOME_INSTALL_PYTHON "@SALOME_INSTALL_PYTHON@")
103 SET(SALOME_INSTALL_PYTHON_SHARED "@SALOME_INSTALL_PYTHON_SHARED@")
104 SET(SALOME_INSTALL_RES "@SALOME_INSTALL_RES@")
105 SET(SALOME_INSTALL_DOC "@SALOME_INSTALL_DOC@")
106 SET(SALOME_INSTALL_AMCONFIG_LOCAL "@SALOME_INSTALL_AMCONFIG_LOCAL@")
107
108 # Include GUI targets if they were not already loaded:
109 IF(NOT (TARGET Event)) 
110   INCLUDE("${GUI_ROOT_DIR_EXP}/${SALOME_INSTALL_CMAKE}/SalomeGUITargets.cmake")
111 ENDIF()
112
113 # Exposed PYHELLO targets:
114 SET(PYHELLO_SalomeIDLPYHELLO SalomeIDLPYHELLO)