Salome HOME
Merge from V6_main 12/04/2013
[tools/medcoupling.git] / src / MEDCoupling / CMakeLists.txt
1 # Copyright (C) 2012-2013  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   MEDCouplingMemArrayChar.cxx
38   MEDCouplingTimeLabel.cxx
39   MEDCouplingCMesh.cxx
40   MEDCouplingCurveLinearMesh.cxx
41   MEDCouplingStructuredMesh.cxx
42   MEDCouplingTimeDiscretization.cxx
43   MEDCouplingFieldDiscretization.cxx
44   MEDCouplingRefCountObject.cxx
45   MEDCouplingPointSet.cxx
46   MEDCouplingUMeshDesc.cxx
47   MEDCouplingFieldTemplate.cxx
48   MEDCouplingExtrudedMesh.cxx
49   MEDCouplingMesh.cxx
50   MEDCouplingGaussLocalization.cxx
51   MEDCouplingNatureOfField.cxx
52   MEDCouplingMultiFields.cxx
53   MEDCouplingDefinitionTime.cxx
54   MEDCouplingFieldOverTime.cxx
55   )
56
57 SET(medcouplingremapper_SOURCES
58   MEDCouplingRemapper.cxx
59   )
60
61 ADD_LIBRARY(medcoupling SHARED ${medcoupling_SOURCES})
62 SET_TARGET_PROPERTIES(medcoupling PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
63 TARGET_LINK_LIBRARIES(medcoupling interpkernel)
64 INSTALL(TARGETS medcoupling DESTINATION ${MED_salomelib_LIBS})
65
66 ADD_LIBRARY(medcouplingremapper SHARED ${medcouplingremapper_SOURCES})
67 TARGET_LINK_LIBRARIES(medcouplingremapper medcoupling)
68 SET_TARGET_PROPERTIES(medcouplingremapper PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
69 INSTALL(TARGETS medcouplingremapper DESTINATION ${MED_salomelib_LIBS})
70
71 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
72 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
73 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} DESTINATION ${MED_salomeinclude_HEADERS})
74
75 # To allow usage as SWIG dependencies:
76 SET(medcoupling_HEADERS_HXX PARENT_SCOPE)
77 SET(medcoupling_HEADERS_TXX PARENT_SCOPE)