Salome HOME
Merge from V6_main 13/12/2012
[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   MEDCouplingTimeDiscretization.cxx
40   MEDCouplingFieldDiscretization.cxx
41   MEDCouplingRefCountObject.cxx
42   MEDCouplingPointSet.cxx
43   MEDCouplingUMeshDesc.cxx
44   MEDCouplingFieldTemplate.cxx
45   MEDCouplingExtrudedMesh.cxx
46   MEDCouplingMesh.cxx
47   MEDCouplingGaussLocalization.cxx
48   MEDCouplingNatureOfField.cxx
49   MEDCouplingMultiFields.cxx
50   MEDCouplingDefinitionTime.cxx
51   MEDCouplingFieldOverTime.cxx
52   )
53
54 SET(medcouplingremapper_SOURCES
55   MEDCouplingRemapper.cxx
56   )
57
58 ADD_LIBRARY(medcoupling SHARED ${medcoupling_SOURCES})
59 SET_TARGET_PROPERTIES(medcoupling PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
60 TARGET_LINK_LIBRARIES(medcoupling interpkernel)
61 INSTALL(TARGETS medcoupling DESTINATION ${MED_salomelib_LIBS})
62
63 ADD_LIBRARY(medcouplingremapper SHARED ${medcouplingremapper_SOURCES})
64 TARGET_LINK_LIBRARIES(medcouplingremapper medcoupling)
65 SET_TARGET_PROPERTIES(medcouplingremapper PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
66 INSTALL(TARGETS medcouplingremapper DESTINATION ${MED_salomelib_LIBS})
67
68 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
69 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
70 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} DESTINATION ${MED_salomeinclude_HEADERS})