2 # Sets the following variables:
3 # CGNS_INCLUDE_DIRS - path to the CGNS include directory
4 # CGNS_LIBRARIES - path to the CGNS libraries to be linked against
7 #########################################################################
8 # Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
10 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
11 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
27 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
32 MESSAGE(STATUS "Check for CGNS ...")
36 SET(CGNS_ROOT_DIR $ENV{CGN_ROOT_DIR} CACHE PATH "Path to the CGNS.")
39 LIST(APPEND CMAKE_PREFIX_PATH "${CGNS_ROOT_DIR}")
42 FIND_PATH(CGNS_INCLUDE_DIRS cgnslib.h)
43 FIND_LIBRARY(CGNS_LIBRARIES NAMES cgns)
45 INCLUDE(FindPackageHandleStandardArgs)
46 FIND_PACKAGE_HANDLE_STANDARD_ARGS(CGNS REQUIRED_VARS CGNS_INCLUDE_DIRS CGNS_LIBRARIES)