Salome HOME
1) Add CMake files to the dist rules (make dist)
[tools/medcoupling.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_SOURCE_DIR}/../INTERP_KERNEL
25   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases
26   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Geometric2D
27   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/ExprEval
28   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints
29   )
30
31 SET(medcoupling_SOURCES
32   MEDCouplingField.cxx
33   MEDCouplingFieldDouble.cxx
34   MEDCouplingUMesh.cxx
35   MEDCouplingMemArray.cxx
36   MEDCouplingTimeLabel.cxx
37   MEDCouplingCMesh.cxx
38   MEDCouplingTimeDiscretization.cxx
39   MEDCouplingFieldDiscretization.cxx
40   MEDCouplingRefCountObject.cxx
41   MEDCouplingPointSet.cxx
42   MEDCouplingUMeshDesc.cxx
43   MEDCouplingFieldTemplate.cxx
44   MEDCouplingExtrudedMesh.cxx
45   MEDCouplingMesh.cxx
46   MEDCouplingGaussLocalization.cxx
47   MEDCouplingNatureOfField.cxx
48   MEDCouplingMultiFields.cxx
49   MEDCouplingDefinitionTime.cxx
50   MEDCouplingFieldOverTime.cxx
51   )
52
53 SET(medcouplingremapper_SOURCES
54   MEDCouplingRemapper.cxx
55   )
56
57 ADD_LIBRARY(medcoupling SHARED ${medcoupling_SOURCES})
58 SET_TARGET_PROPERTIES(medcoupling PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
59 TARGET_LINK_LIBRARIES(medcoupling interpkernel)
60 INSTALL(TARGETS medcoupling DESTINATION ${MED_salomelib_LIBS})
61
62 ADD_LIBRARY(medcouplingremapper SHARED ${medcouplingremapper_SOURCES})
63 TARGET_LINK_LIBRARIES(medcouplingremapper medcoupling)
64 SET_TARGET_PROPERTIES(medcouplingremapper PROPERTIES COMPILE_FLAGS "${PLATFORM_DEFINITIONS}")
65 INSTALL(TARGETS medcouplingremapper DESTINATION ${MED_salomelib_LIBS})
66
67 FILE(GLOB medcoupling_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
68 FILE(GLOB medcoupling_HEADERS_TXX "${CMAKE_CURRENT_SOURCE_DIR}/*.txx")
69 INSTALL(FILES ${medcoupling_HEADERS_HXX} ${medcoupling_HEADERS_TXX} DESTINATION ${MED_salomeinclude_HEADERS})