]> SALOME platform Git repositories - tools/configuration.git/blob - cmake/FindMESHGEMS.cmake
Salome HOME
Patch for MacOS (from SALOME forum)
[tools/configuration.git] / cmake / FindMESHGEMS.cmake
1 # Copyright (C) 2013-2016  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # - Find MESHGEMS
21 # Sets the following variables:
22 #   MESHGEMS_INCLUDE_DIRS - path to the MESHGEMS include directory
23 #   MESHGEMS_CADSURF_LIBRARY   - paths to the MESHGEMS libraries to be linked against
24 #   MESHGEMS_HEXA_LIBRARY
25 #   MESHGEMS_HYBRID_LIBRARY
26 #   MESHGEMS_TETRA_LIBRARY
27 #   MESHGEMS_TETRA_HPC_LIBRARY
28
29 # ------
30
31 MESSAGE(STATUS "Check for MESHGEMS ...")
32
33 # ------
34
35 SET(MESHGEMS_ROOT_DIR $ENV{MESHGEMS_ROOT_DIR})
36
37 IF(MESHGEMS_ROOT_DIR)
38   LIST(APPEND CMAKE_PREFIX_PATH "${MESHGEMS_ROOT_DIR}")
39 ENDIF(MESHGEMS_ROOT_DIR)
40
41 FIND_PATH(MESHGEMS_INCLUDE_DIRS meshgems/cadsurf.h PATH_SUFFIXES include)
42
43 IF(MACHINE_IS_64)
44   SET(_suff "_64")
45 ELSE()
46   SET(_suff)
47 ENDIF(MACHINE_IS_64)
48 IF(WIN32)       
49   SET(_plt Win7${_suff}_VC9 Win7${_suff}_VC10 WinXP${_suff}_VC9 WinXP${_suff}_VC10)
50 ELSE()
51   SET(_plt Linux${_suff})
52 ENDIF(WIN32)
53
54 FIND_LIBRARY(MESHGEMS_LIB_meshgems       NAMES meshgems       PATH_SUFFIXES ${_plt})
55 FIND_LIBRARY(MESHGEMS_LIB_meshgems_stubs NAMES meshgems_stubs PATH_SUFFIXES ${_plt})
56 FIND_LIBRARY(MESHGEMS_CADSURF_LIBRARY    NAMES mg-cadsurf     PATH_SUFFIXES ${_plt})
57 FIND_LIBRARY(MESHGEMS_HEXA_LIBRARY       NAMES mg-hexa        PATH_SUFFIXES ${_plt})
58 FIND_LIBRARY(MESHGEMS_HYBRID_LIBRARY     NAMES mg-hybrid      PATH_SUFFIXES ${_plt})
59 FIND_LIBRARY(MESHGEMS_TETRA_LIBRARY      NAMES mg-tetra       PATH_SUFFIXES ${_plt})
60 FIND_LIBRARY(MESHGEMS_TETRA_HPC_LIBRARY  NAMES mg-tetra_hpc   PATH_SUFFIXES ${_plt})
61
62 # TODO: search all components
63 IF(MESHGEMS_LIB_meshgems)
64   SET(MESHGEMS_LIBRARY_meshgems  ${MESHGEMS_LIB_meshgems}  ${MESHGEMS_LIB_meshgems_stubs})
65
66   SET(MESHGEMS_CADSURF_LIBRARY   ${MESHGEMS_CADSURF_LIBRARY}   ${MESHGEMS_LIBRARY_meshgems})
67   SET(MESHGEMS_HEXA_LIBRARY      ${MESHGEMS_HEXA_LIBRARY}      ${MESHGEMS_LIBRARY_meshgems})
68   SET(MESHGEMS_HYBRID_LIBRARY    ${MESHGEMS_HYBRID_LIBRARY}    ${MESHGEMS_LIBRARY_meshgems})
69   SET(MESHGEMS_TETRA_LIBRARY     ${MESHGEMS_TETRA_LIBRARY}     ${MESHGEMS_LIBRARY_meshgems})
70   SET(MESHGEMS_TETRA_HPC_LIBRARY ${MESHGEMS_TETRA_HPC_LIBRARY} ${MESHGEMS_LIBRARY_meshgems})
71 ENDIF(MESHGEMS_LIB_meshgems)
72
73 INCLUDE(FindPackageHandleStandardArgs)
74 FIND_PACKAGE_HANDLE_STANDARD_ARGS(MESHGEMS REQUIRED_VARS MESHGEMS_INCLUDE_DIRS MESHGEMS_CADSURF_LIBRARY MESHGEMS_HEXA_LIBRARY MESHGEMS_HYBRID_LIBRARY MESHGEMS_TETRA_LIBRARY MESHGEMS_TETRA_HPC_LIBRARY)