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