Salome HOME
LOT7: fix compilation at med_int==int64
[modules/paravis.git] / src / Plugins / VoroGauss / CMakeLists.txt
1 # Copyright (C) 2017-2019  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 # Author : Anthony Geay (EDF R&D)
20
21 PROJECT(VoroGauss)
22 CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
23
24 CMAKE_POLICY(SET CMP0003 NEW)
25 IF(${CMAKE_VERSION} VERSION_GREATER "3.0.0")
26   CMAKE_POLICY(SET CMP0022 OLD)
27   CMAKE_POLICY(SET CMP0023 OLD)
28 ENDIF()
29
30 SET(MED_READER_VERSION "0.0.0")
31
32 # Common CMake macros
33 # ===================
34 SET(CONFIGURATION_ROOT_DIR $ENV{CONFIGURATION_ROOT_DIR} CACHE PATH "Path to the Salome CMake configuration files")
35 IF(EXISTS ${CONFIGURATION_ROOT_DIR})
36   LIST(APPEND CMAKE_MODULE_PATH "${CONFIGURATION_ROOT_DIR}/cmake")
37   INCLUDE(SalomeMacros)
38 ELSE()
39     MESSAGE(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !")
40 ENDIF()
41 FIND_PACKAGE(SalomePythonInterp REQUIRED)
42 FIND_PACKAGE(SalomePythonLibs REQUIRED)
43
44 FIND_PACKAGE(ParaView REQUIRED)
45 IF(NOT ParaView_FOUND)
46   MESSAGE(FATAL_ERROR "Please locate ParaView." )
47 ENDIF(NOT ParaView_FOUND)
48 INCLUDE(${PARAVIEW_USE_FILE})
49
50 SET(MEDCOUPLING_ROOT_DIR $ENV{MEDCOUPLING_ROOT_DIR} CACHE PATH "MEDCOUPLING_ROOT_DIR")
51 LIST(APPEND CMAKE_MODULE_PATH "${MEDCOUPLING_ROOT_DIR}/cmake_files")
52 FIND_PACKAGE(SalomeMEDCoupling REQUIRED)
53
54 IF(MEDCOUPLING_USE_64BIT_IDS)
55   ADD_DEFINITIONS("-DMEDCOUPLING_USE_64BIT_IDS")
56 ENDIF(MEDCOUPLING_USE_64BIT_IDS)
57
58 OPTION(BUILD_SHARED_LIBS "Build with shared libraries." ${VTK_BUILD_SHARED_LIBS})
59
60 SET(VTK_INSTALL_RUNTIME_DIR lib)
61 SET(VTK_INSTALL_LIBRARY_DIR lib)
62 SET(VTK_INSTALL_ARCHIVE_DIR lib)
63
64 PV_PROCESS_MODULES()
65
66 INCLUDE_DIRECTORIES(
67   ${MEDCOUPLING_INCLUDE_DIRS}
68 )
69
70 ADD_SUBDIRECTORY(ParaViewPlugin)