Salome HOME
[ICoCo]: ICoCo part as a new sub library: libmedicoco.so
[tools/medcoupling.git] / src / MEDCoupling / CMakeLists.txt
1 # Copyright (C) 2012-2021  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 # Author : Anthony Geay (CEA/DEN)
20
21 IF(MEDCOUPLING_BUILD_TESTS)
22   ADD_SUBDIRECTORY(Test)
23 ENDIF(MEDCOUPLING_BUILD_TESTS)
24
25 ### KILLER WARNINGS TO HELP INT64 MANAGEMENT
26 #ADD_DEFINITIONS(-Wextra -Wsynth -Wno-unused-parameter -pedantic -Wall -Wshadow  -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Woverloaded-virtual -Wreturn-type  -Wno-endif-labels  -Wsign-compare -Wmissing-format-attribute -Wno-multichar -Wno-deprecated-declarations -Wpacked -Wredundant-decls -Wlong-long -Wdisabled-optimization -Wunknown-pragmas -Wundef  -Wreorder)
27
28 IF (NOT DEFINED MSVC)
29   ADD_DEFINITIONS(-Wsign-compare -Wconversion)
30 ENDIF()
31
32 INCLUDE_DIRECTORIES(
33   ${CMAKE_CURRENT_BINARY_DIR}/../..
34   ${CMAKE_CURRENT_SOURCE_DIR}
35   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL
36   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases
37   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Geometric2D
38   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/ExprEval
39   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints
40   )
41
42 SET(medcoupling_SOURCES
43   MEDCouplingField.cxx
44   MEDCouplingFieldFloat.cxx
45   MEDCouplingFieldDouble.cxx
46   MEDCouplingFieldInt32.cxx
47   MEDCouplingFieldInt64.cxx
48   MEDCouplingUMesh.cxx
49   MEDCouplingUMesh_internal.cxx
50   MEDCouplingUMesh_intersection.cxx
51   MEDCoupling1GTUMesh.cxx
52   MEDCouplingMemArray.cxx
53   MEDCouplingMemArrayFloat.cxx
54   MEDCouplingMemArrayChar.cxx
55   MEDCouplingMap.cxx
56   MEDCouplingTraits.cxx
57   MEDCouplingTimeLabel.cxx
58   MEDCouplingCMesh.cxx
59   MEDCouplingIMesh.cxx
60   MEDCouplingCurveLinearMesh.cxx
61   MEDCouplingStructuredMesh.cxx
62   MEDCouplingTimeDiscretization.cxx
63   MEDCouplingFieldDiscretization.cxx
64   MEDCouplingRefCountObject.cxx
65   MEDCouplingPointSet.cxx
66   MEDCouplingFieldTemplate.cxx
67   MEDCouplingMappedExtrudedMesh.cxx
68   MEDCouplingMesh.cxx
69   MEDCouplingGaussLocalization.cxx
70   MEDCouplingNatureOfField.cxx
71   MEDCouplingMultiFields.cxx
72   MEDCouplingDefinitionTime.cxx
73   MEDCouplingFieldOverTime.cxx
74   MEDCouplingCartesianAMRMesh.cxx
75   MEDCouplingAMRAttribute.cxx
76   MEDCouplingMatrix.cxx
77   MEDCouplingPartDefinition.cxx
78   MEDCouplingSkyLineArray.cxx
79   MEDCouplingVoronoi.cxx
80 )
81
82 SET(medcouplingremapper_SOURCES
83   MEDCouplingRemapper.cxx
84   )
85
86 ADD_LIBRARY(medcouplingcpp ${medcoupling_SOURCES})
87 SET_TARGET_PROPERTIES(medcouplingcpp PROPERTIES OUTPUT_NAME "medcoupling")
88 TARGET_LINK_LIBRARIES(medcouplingcpp interpkernel)
89 INSTALL(TARGETS medcouplingcpp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
90
91 ADD_LIBRARY(medcouplingremapper ${medcouplingremapper_SOURCES})
92 TARGET_LINK_LIBRARIES(medcouplingremapper medcouplingcpp)
93 INSTALL(TARGETS medcouplingremapper EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
94
95 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
96 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
97 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} MEDCouplingNatureOfFieldEnum DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
98
99 # To allow usage as SWIG dependencies:
100 SET(medcoupling_HEADERS_HXX PARENT_SCOPE)
101 SET(medcoupling_HEADERS_TXX PARENT_SCOPE)