Salome HOME
Merge from V6_main 13/12/2012
[modules/med.git] / src / INTERP_KERNEL / CMakeLists.txt
1 # Copyright (C) 2007-2012  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.
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   UnitTetraIntersectionBary.cxx
30   InterpolationOptions.cxx
31   DirectedBoundingBox.cxx
32   Interpolation2DCurve.cxx
33   Interpolation3DSurf.cxx
34   Interpolation3D.cxx
35   Interpolation3D2D.cxx
36   MeshElement.cxx
37   InterpKernelMeshQuality.cxx
38   InterpKernelCellSimplify.cxx
39   InterpKernelMatrixTools.cxx
40   Bases/InterpKernelException.cxx
41   Geometric2D/InterpKernelGeo2DAbstractEdge.cxx
42   Geometric2D/InterpKernelGeo2DBounds.cxx
43   Geometric2D/InterpKernelGeo2DPrecision.cxx
44   Geometric2D/InterpKernelGeo2DComposedEdge.cxx
45   Geometric2D/InterpKernelGeo2DEdgeArcCircle.cxx
46   Geometric2D/InterpKernelGeo2DEdge.cxx
47   Geometric2D/InterpKernelGeo2DEdgeInfLin.cxx
48   Geometric2D/InterpKernelGeo2DEdgeLin.cxx
49   Geometric2D/InterpKernelGeo2DElementaryEdge.cxx
50   Geometric2D/InterpKernelGeo2DNode.cxx
51   Geometric2D/InterpKernelGeo2DQuadraticPolygon.cxx
52   ExprEval/InterpKernelExprParser.cxx
53   ExprEval/InterpKernelFunction.cxx
54   ExprEval/InterpKernelUnit.cxx
55   ExprEval/InterpKernelValue.cxx
56   ExprEval/InterpKernelAsmX86.cxx
57   GaussPoints/InterpKernelGaussCoords.cxx
58   )
59
60 INCLUDE_DIRECTORIES(
61   ${CMAKE_CURRENT_SOURCE_DIR}
62   ${CMAKE_CURRENT_SOURCE_DIR}/Bases
63   ${CMAKE_CURRENT_SOURCE_DIR}/Geometric2D
64   ${CMAKE_CURRENT_SOURCE_DIR}/ExprEval
65   ${CMAKE_CURRENT_SOURCE_DIR}/GaussPoints
66   )
67
68 SET(PLATFORM_MMAP)
69 IF(NOT WINDOWS)
70   SET(PLATFORM_MMAP "-D_POSIX_MAPPED_FILES")
71 ENDIF(NOT WINDOWS)
72
73 ADD_LIBRARY(interpkernel SHARED ${interpkernel_SOURCES})
74 SET_TARGET_PROPERTIES(interpkernel PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS} ${PLATFORM_MMAP}")
75 TARGET_LINK_LIBRARIES(interpkernel ${PLATFORM_LIBS})
76 INSTALL(TARGETS interpkernel DESTINATION ${MED_salomelib_LIBS})
77
78 FILE(GLOB_RECURSE interpkernel_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
79 FILE(GLOB_RECURSE interpkernel_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
80 INSTALL(FILES ${interpkernel_HEADERS_HXX} ${interpkernel_HEADERS_TXX} DESTINATION ${MED_salomeinclude_HEADERS})