1 # Copyright (C) 2017 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 # Author : Anthony Geay (EDF R&D)
22 CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
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)
30 SET(MED_READER_VERSION "0.0.0")
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")
39 MESSAGE(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !")
41 FIND_PACKAGE(SalomePythonInterp REQUIRED)
42 FIND_PACKAGE(SalomePythonLibs REQUIRED)
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 PV_SETUP_MODULE_ENVIRONMENT("vtkSimpleMode")
51 OPTION(BUILD_SHARED_LIBS "Build with shared libraries." ${VTK_BUILD_SHARED_LIBS})
53 SET(VTK_INSTALL_RUNTIME_DIR lib/salome)
54 SET(VTK_INSTALL_LIBRARY_DIR lib/salome)
55 SET(VTK_INSTALL_ARCHIVE_DIR lib/salome)
59 ADD_SUBDIRECTORY(ParaViewPlugin)