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