Salome HOME
bos #18709: Modify GMSH headers detection procedure
[tools/configuration.git] / cmake / Findf2c.cmake
1 # - Find F2C
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 
6 #
7
8 #########################################################################
9 # Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
10 #
11 # This library is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU Lesser General Public
13 # License as published by the Free Software Foundation; either
14 # version 2.1 of the License, or (at your option) any later version.
15 #
16 # This library is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 # Lesser General Public License for more details.
20 #
21 # You should have received a copy of the GNU Lesser General Public
22 # License along with this library; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24 #
25 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
26 #
27
28 # ------
29
30 MESSAGE(STATUS "Check for f2c ...")
31
32 # ------
33
34 SET(f2c_ROOT_DIR $ENV{F2C_ROOT_DIR})
35
36 IF(f2c_ROOT_DIR)
37   LIST(APPEND CMAKE_PREFIX_PATH "${f2c_ROOT_DIR}")
38 ENDIF(f2c_ROOT_DIR)
39
40 FIND_PATH(f2c_INCLUDE_DIRS F2c.h)
41 FIND_LIBRARY(f2c_LIBRARY_LIBF77 NAMES LIBF77)
42 FIND_LIBRARY(f2c_LIBRARY_LIBI77 NAMES LIBI77)
43
44 SET(f2c_LIBRARIES
45   ${f2c_LIBRARY_LIBF77}
46   ${f2c_LIBRARY_LIBI77}
47 )
48
49 FIND_PROGRAM(f2c_GENERATOR F2c)
50
51 INCLUDE(FindPackageHandleStandardArgs)
52 FIND_PACKAGE_HANDLE_STANDARD_ARGS(f2c REQUIRED_VARS f2c_INCLUDE_DIRS f2c_LIBRARIES f2c_GENERATOR)