Salome HOME
Remove CMake warnings: set-up cmake policies globally in SalomeMacros.cmake
[plugins/gmshplugin.git] / adm_local / cmake_files / FindGMSH.cmake
1 # - Find GMSH
2 # Sets the following variables:
3 #   GMSH_INCLUDE_DIRS - path to the GMSH include directory
4 #   GMSH_LIBRARIES    - path to the GMSH libraries to be linked against
5 #
6
7 #########################################################################
8 # Copyright (C) 2012-2015  ALNEOS
9 # Copyright (C) 2016-2020  EDF R&D
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.alneos.com/ or email : contact@alneos.fr
26 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
27 #
28
29 # ------
30
31 MESSAGE(STATUS "Check for GMSH ...")
32
33 # ------
34
35 SET(GMSH_ROOT_DIR $ENV{GMSH_ROOT_DIR} CACHE PATH "Path to the GMSH.")
36
37 IF(GMSH_ROOT_DIR)
38  LIST(APPEND CMAKE_PREFIX_PATH "${GMSH_ROOT_DIR}")
39 ENDIF(GMSH_ROOT_DIR)
40
41 FIND_PATH(GMSH_INCLUDE_DIRS Gmsh.h gmsh.h PATH_SUFFIXES gmsh)
42 FIND_LIBRARY(GMSH_LIBRARIES NAMES Gmsh gmsh)
43
44 INCLUDE(FindPackageHandleStandardArgs)
45 FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMSH REQUIRED_VARS GMSH_INCLUDE_DIRS GMSH_LIBRARIES)