Salome HOME
Implementation of new DataArrayInt.locateComponentId method
[tools/medcoupling.git] / src / MEDCoupling / CMakeLists.txt
1 # Copyright (C) 2012-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 # 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   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/LinearAlgebra
41   )
42
43 SET(medcoupling_SOURCES
44   MEDCouplingField.cxx
45   MEDCouplingFieldFloat.cxx
46   MEDCouplingFieldDouble.cxx
47   MEDCouplingFieldInt32.cxx
48   MEDCouplingFieldInt64.cxx
49   MEDCouplingUMesh.cxx
50   MEDCouplingUMesh_internal.cxx
51   MEDCouplingUMesh_intersection.cxx
52   MEDCoupling1GTUMesh.cxx
53   MEDCouplingMemArray.cxx
54   MEDCouplingMemArrayFloat.cxx
55   MEDCouplingMemArrayChar.cxx
56   MEDCouplingMap.cxx
57   MEDCouplingTraits.cxx
58   MEDCouplingTimeLabel.cxx
59   MEDCouplingCMesh.cxx
60   MEDCouplingIMesh.cxx
61   MEDCouplingCurveLinearMesh.cxx
62   MEDCouplingStructuredMesh.cxx
63   MEDCouplingTimeDiscretization.cxx
64   MEDCouplingFieldDiscretization.cxx
65   MEDCouplingFieldDiscretizationOnNodesFE.cxx
66   MEDCouplingRefCountObject.cxx
67   MEDCouplingPointSet.cxx
68   MEDCouplingFieldTemplate.cxx
69   MEDCouplingMappedExtrudedMesh.cxx
70   MEDCouplingMesh.cxx
71   MEDCouplingGaussLocalization.cxx
72   MEDCouplingNatureOfField.cxx
73   MEDCouplingMultiFields.cxx
74   MEDCouplingDefinitionTime.cxx
75   MEDCouplingFieldOverTime.cxx
76   MEDCouplingCartesianAMRMesh.cxx
77   MEDCouplingAMRAttribute.cxx
78   MEDCouplingMatrix.cxx
79   MEDCouplingPartDefinition.cxx
80   MEDCouplingSkyLineArray.cxx
81   MEDCouplingVoronoi.cxx
82 )
83
84 SET(medcouplingremapper_SOURCES
85   MEDCouplingRemapper.cxx
86   )
87
88 ADD_LIBRARY(medcouplingcpp ${medcoupling_SOURCES})
89 SET_TARGET_PROPERTIES(medcouplingcpp PROPERTIES OUTPUT_NAME "medcoupling")
90 TARGET_LINK_LIBRARIES(medcouplingcpp interpkernel)
91 INSTALL(TARGETS medcouplingcpp EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
92
93 ADD_LIBRARY(medcouplingremapper ${medcouplingremapper_SOURCES})
94 TARGET_LINK_LIBRARIES(medcouplingremapper medcouplingcpp)
95 INSTALL(TARGETS medcouplingremapper EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
96
97 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
98 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
99 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} MEDCouplingNatureOfFieldEnum DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
100
101 # To allow usage as SWIG dependencies:
102 SET(medcoupling_HEADERS_HXX PARENT_SCOPE)
103 SET(medcoupling_HEADERS_TXX PARENT_SCOPE)