Salome HOME
add License file
[tools/configuration.git] / cmake / 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-2024  CEA, EDF, OPEN CASCADE
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public
12 # License as published by the Free Software Foundation; either
13 # version 2.1 of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # Lesser General Public License for more details.
19 #
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with this library; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23 #
24 # See http://www.alneos.com/ or email : contact@alneos.fr
25 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
26 #
27
28 # ------
29
30 MESSAGE(STATUS "Check for GMSH ...")
31
32 # ------
33
34 SET(GMSH_ROOT_DIR $ENV{GMSH_ROOT_DIR} CACHE PATH "Path to the GMSH.")
35
36 IF(GMSH_ROOT_DIR)
37  LIST(APPEND CMAKE_PREFIX_PATH "${GMSH_ROOT_DIR}")
38 ENDIF(GMSH_ROOT_DIR)
39
40 FIND_PATH(GMSH_INCLUDE_DIRS NAMES GmshVersion.h PATH_SUFFIXES gmsh)
41 IF(GMSH_INCLUDE_DIRS)
42   GET_FILENAME_COMPONENT(GMSH_INCLUDE_DIRS_UP ${GMSH_INCLUDE_DIRS} DIRECTORY)
43   LIST(APPEND GMSH_INCLUDE_DIRS "${GMSH_INCLUDE_DIRS_UP}")
44 ENDIF()
45
46 IF(WIN32 AND CMAKE_BUILD_TYPE STREQUAL Debug)
47   FIND_LIBRARY(GMSH_LIBRARIES NAMES gmshd)
48 ELSE()
49   FIND_LIBRARY(GMSH_LIBRARIES NAMES Gmsh gmsh gmshd)
50 ENDIF()
51 INCLUDE(FindPackageHandleStandardArgs)
52 FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMSH REQUIRED_VARS GMSH_INCLUDE_DIRS GMSH_LIBRARIES)