# - Config file for the @PROJECT_NAME@ package # It defines the following variables. # Specific to the package @PROJECT_NAME@ itself: # @PROJECT_NAME_UC@_INCLUDE_DIRS - include directories # @PROJECT_NAME_UC@_LIBRARIES - libraries to link against # @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file # ############################################################### # Copyright (C) 2013 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # See http://www.salome-platform.org/ or # email : webmaster.salome@opencascade.com ############################################################### ### Initialisation performed by CONFIGURE_PACKAGE_CONFIG_FILE: @PACKAGE_INIT@ ### First the generic stuff for a standard module: SET(SIMANIO_INCLUDE_DIRS "@PACKAGE_CONF_INCLUDE_DIRS@") # Load the dependencies for the libraries of @PROJECT_NAME@ # (contains definitions for IMPORTED targets). This is only # imported if we are not built as a subproject (in this case targets are already there) IF(NOT SimanIO AND NOT @PROJECT_NAME@_BINARY_DIR) INCLUDE("@PACKAGE_INSTALL_CMAKE_CONFIG_DIR@/@PROJECT_NAME@Targets.cmake") ENDIF() # These are IMPORTED targets created by @PROJECT_NAME@Targets.cmake SET(SIMANIO_LIBRARIES SimanIO) # Package root dir: SET_AND_CHECK(SIMANIO_ROOT_DIR_EXP "@PACKAGE_CMAKE_INSTALL_PREFIX@") #### Now the specificities # Options exported by the package: SET_AND_CHECK(WSO2_ROOT_DIR_EXP "@PACKAGE_WSO2_ROOT_DIR@")