2 # Sets the following variables:
3 # f2c_INCLUDE_DIRS - path to the f2c include directory
4 # f2c_LIBRARIES - path to the f2c libraries to be linked against
5 # f2c_GENERATOR - f2c executable
8 #########################################################################
9 # Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
11 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
12 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
14 # This library is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU Lesser General Public
16 # License as published by the Free Software Foundation; either
17 # version 2.1 of the License, or (at your option) any later version.
19 # This library is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 # Lesser General Public License for more details.
24 # You should have received a copy of the GNU Lesser General Public
25 # License along with this library; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
33 MESSAGE(STATUS "Check for f2c ...")
37 SET(f2c_ROOT_DIR $ENV{F2C_ROOT_DIR})
40 LIST(APPEND CMAKE_PREFIX_PATH "${f2c_ROOT_DIR}")
43 FIND_PATH(f2c_INCLUDE_DIRS F2c.h)
44 FIND_LIBRARY(f2c_LIBRARY_LIBF77 NAMES LIBF77)
45 FIND_LIBRARY(f2c_LIBRARY_LIBI77 NAMES LIBI77)
52 FIND_PROGRAM(f2c_GENERATOR F2c)
54 INCLUDE(FindPackageHandleStandardArgs)
55 FIND_PACKAGE_HANDLE_STANDARD_ARGS(f2c REQUIRED_VARS f2c_INCLUDE_DIRS f2c_LIBRARIES f2c_GENERATOR)