Salome HOME
Fixed Salome crashed after close application with opened "Add Quadratic element"
[modules/smesh.git] / adm_local / cmake_files / 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-2014  CEA/DEN, EDF R&D, OPEN CASCADE
10 #
11 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
12 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
13 #
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.
18 #
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.
23 #
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
27 #
28 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
29 #
30
31 # ------
32
33 MESSAGE(STATUS "Check for f2c ...")
34
35 # ------
36
37 SET(f2c_ROOT_DIR $ENV{F2C_ROOT_DIR})
38
39 IF(f2c_ROOT_DIR)
40   LIST(APPEND CMAKE_PREFIX_PATH "${f2c_ROOT_DIR}")
41 ENDIF(f2c_ROOT_DIR)
42
43 FIND_PATH(f2c_INCLUDE_DIRS F2c.h)
44 FIND_LIBRARY(f2c_LIBRARY_LIBF77 NAMES LIBF77)
45 FIND_LIBRARY(f2c_LIBRARY_LIBI77 NAMES LIBI77)
46
47 SET(f2c_LIBRARIES
48   ${f2c_LIBRARY_LIBF77}
49   ${f2c_LIBRARY_LIBI77}
50 )
51
52 FIND_PROGRAM(f2c_GENERATOR F2c)
53
54 INCLUDE(FindPackageHandleStandardArgs)
55 FIND_PACKAGE_HANDLE_STANDARD_ARGS(f2c REQUIRED_VARS f2c_INCLUDE_DIRS f2c_LIBRARIES f2c_GENERATOR)