Salome HOME
Copyright update 2022
[modules/paravis.git] / src / Insitu / VisualizationLibrary / CMakeLists.txt
1 # Copyright (C) 2010-2022  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 SET(BUILD_SHARED_LIBS TRUE)
21
22 ADD_DEFINITIONS(${MEDCOUPLING_DEFINITIONS})
23
24 INCLUDE_DIRECTORIES(
25   ${MEDCOUPLING_INCLUDE_DIRS}
26   ${MPI_INCLUDE_PATH}
27   ${PARAVIS_INCLUDE_DIRS}
28   ${MEDCOUPLING_INCLUDE_DIRS}
29   ${CMAKE_CURRENT_SOURCE_DIR}/../../Plugins/MEDReader/plugin/MEDLoaderForPV
30 )
31
32 SET(_link_LIBRARIES
33   ${MEDCoupling_medcoupling}
34   ${MEDCoupling_interpkernel}
35   ${MPI_LIBRARIES}
36   ${PARAVIS_MEDLoaderForPV}
37   ${MEDCoupling_medloader}
38   ${MEDFILE_C_LIBRARIES}
39   ParaView::PythonCatalyst
40 )
41
42 SET(_lib_HEADERS
43   visu.hxx
44 )
45
46 SET(_lib_SOURCES
47   visu.cxx
48 )
49
50 ADD_LIBRARY(visulib ${_lib_SOURCES})
51 TARGET_LINK_LIBRARIES(visulib ${_link_LIBRARIES} )
52
53 INSTALL(TARGETS visulib
54         EXPORT ${PROJECT_NAME}TargetGroup
55         DESTINATION ${SALOME_INSTALL_LIBS})
56 INSTALL(FILES ${_lib_HEADERS} DESTINATION include/salome )
57
58