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