Salome HOME
Make ReadField multi type field
[tools/medcoupling.git] / src / INTERP_KERNEL / CMakeLists.txt
1 # Copyright (C) 2012-2016  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 SET(interpkernel_SOURCES
22   TransformedTriangle.cxx
23   TransformedTriangleIntersect.cxx
24   TransformedTriangleMath.cxx
25   BoundingBox.cxx
26   TranslationRotationMatrix.cxx
27   TetraAffineTransform.cxx
28   CellModel.cxx
29   DiameterCalculator.cxx
30   OrientationInverter.cxx
31   UnitTetraIntersectionBary.cxx
32   InterpolationOptions.cxx
33   BoxSplittingOptions.cxx
34   DirectedBoundingBox.cxx
35   Interpolation2DCurve.cxx
36   Interpolation3DSurf.cxx
37   Interpolation3D.cxx
38   Interpolation2D3D.cxx
39   Interpolation3D1D.cxx
40   MeshElement.cxx
41   InterpKernelMeshQuality.cxx
42   InterpKernelCellSimplify.cxx
43   InterpKernelMatrixTools.cxx
44   VolSurfUser.cxx
45   SplitterTetra.cxx
46   Bases/InterpKernelException.cxx
47   Geometric2D/InterpKernelGeo2DAbstractEdge.cxx
48   Geometric2D/InterpKernelGeo2DBounds.cxx
49   Geometric2D/InterpKernelGeo2DPrecision.cxx
50   Geometric2D/InterpKernelGeo2DComposedEdge.cxx
51   Geometric2D/InterpKernelGeo2DEdgeArcCircle.cxx
52   Geometric2D/InterpKernelGeo2DEdge.cxx
53   Geometric2D/InterpKernelGeo2DEdgeInfLin.cxx
54   Geometric2D/InterpKernelGeo2DEdgeLin.cxx
55   Geometric2D/InterpKernelGeo2DElementaryEdge.cxx
56   Geometric2D/InterpKernelGeo2DNode.cxx
57   Geometric2D/InterpKernelGeo2DQuadraticPolygon.cxx
58   ExprEval/InterpKernelExprParser.cxx
59   ExprEval/InterpKernelFunction.cxx
60   ExprEval/InterpKernelUnit.cxx
61   ExprEval/InterpKernelValue.cxx
62   ExprEval/InterpKernelAsmX86.cxx
63   GaussPoints/InterpKernelGaussCoords.cxx
64   )
65
66 INCLUDE_DIRECTORIES(
67   ${CMAKE_CURRENT_SOURCE_DIR}
68   ${CMAKE_CURRENT_SOURCE_DIR}/Bases
69   ${CMAKE_CURRENT_SOURCE_DIR}/Geometric2D
70   ${CMAKE_CURRENT_SOURCE_DIR}/ExprEval
71   ${CMAKE_CURRENT_SOURCE_DIR}/GaussPoints
72   )
73
74 SET(PLATFORM_MMAP)
75 IF(NOT WIN32)
76   SET(PLATFORM_MMAP "-D_POSIX_MAPPED_FILES")
77 ENDIF(NOT WIN32)
78
79 ADD_LIBRARY(interpkernel ${interpkernel_SOURCES})
80 SET_TARGET_PROPERTIES(interpkernel PROPERTIES COMPILE_FLAGS "${PLATFORM_MMAP}")
81 TARGET_LINK_LIBRARIES(interpkernel ${PLATFORM_LIBS})
82 INSTALL(TARGETS interpkernel EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
83
84 FILE(GLOB_RECURSE interpkernel_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
85 FILE(GLOB_RECURSE interpkernel_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
86 INSTALL(FILES ${interpkernel_HEADERS_HXX} ${interpkernel_HEADERS_TXX} Bases/NormalizedGeometricTypes DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
87
88 # Will be used for SWIG dependencies:
89 SET (interpkernel_HEADERS_HXX PARENT_SCOPE)
90 SET (interpkernel_HEADERS_TXX PARENT_SCOPE)