Salome HOME
a8d57ffb9993792fac3bccdb1dd72fdaa6ba640a
[modules/med.git] / src / MEDCoupling / 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 ADD_SUBDIRECTORY(Test)
22
23 INCLUDE_DIRECTORIES(
24   ${CMAKE_CURRENT_BINARY_DIR}/../..
25   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL
26   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases
27   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Geometric2D
28   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/ExprEval
29   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints
30   )
31
32 SET(medcoupling_SOURCES
33   MEDCouplingField.cxx
34   MEDCouplingFieldDouble.cxx
35   MEDCouplingUMesh.cxx
36   MEDCouplingMemArray.cxx
37   MEDCouplingTimeLabel.cxx
38   MEDCouplingCMesh.cxx
39   MEDCouplingCurveLinearMesh.cxx
40   MEDCouplingStructuredMesh.cxx
41   MEDCouplingTimeDiscretization.cxx
42   MEDCouplingFieldDiscretization.cxx
43   MEDCouplingRefCountObject.cxx
44   MEDCouplingPointSet.cxx
45   MEDCouplingUMeshDesc.cxx
46   MEDCouplingFieldTemplate.cxx
47   MEDCouplingExtrudedMesh.cxx
48   MEDCouplingMesh.cxx
49   MEDCouplingGaussLocalization.cxx
50   MEDCouplingNatureOfField.cxx
51   MEDCouplingMultiFields.cxx
52   MEDCouplingDefinitionTime.cxx
53   MEDCouplingFieldOverTime.cxx
54   )
55
56 SET(medcouplingremapper_SOURCES
57   MEDCouplingRemapper.cxx
58   )
59
60 ADD_LIBRARY(medcoupling SHARED ${medcoupling_SOURCES})
61 SET_TARGET_PROPERTIES(medcoupling PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
62 TARGET_LINK_LIBRARIES(medcoupling interpkernel)
63 INSTALL(TARGETS medcoupling DESTINATION ${MED_salomelib_LIBS})
64
65 ADD_LIBRARY(medcouplingremapper SHARED ${medcouplingremapper_SOURCES})
66 TARGET_LINK_LIBRARIES(medcouplingremapper medcoupling)
67 SET_TARGET_PROPERTIES(medcouplingremapper PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
68 INSTALL(TARGETS medcouplingremapper DESTINATION ${MED_salomelib_LIBS})
69
70 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
71 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
72 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} DESTINATION ${MED_salomeinclude_HEADERS})