Salome HOME
[EDF17832] : Move VoroGauss GaussToCell StaticMesh DevelopedSurface from EDF to parav...
[modules/paravis.git] / src / Plugins / VoroGauss / CMakeLists.txt
1 # Copyright (C) 2017  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 OPTION(BUILD_SHARED_LIBS "Build with shared libraries." ${VTK_BUILD_SHARED_LIBS})
55
56 SET(VTK_INSTALL_RUNTIME_DIR lib)
57 SET(VTK_INSTALL_LIBRARY_DIR lib)
58 SET(VTK_INSTALL_ARCHIVE_DIR lib)
59
60 PV_PROCESS_MODULES()
61
62 INCLUDE_DIRECTORIES(
63   ${MEDCOUPLING_INCLUDE_DIRS}
64 )
65
66 ADD_SUBDIRECTORY(ParaViewPlugin)