Salome HOME
Merge from V6_main 01/04/2013
[modules/med.git] / src / MEDOP / cmp / 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
20 INCLUDE_DIRECTORIES(
21   ${OMNIORB_INCLUDE_DIRS}
22   ${MED3_INCLUDE_DIRS}
23   ${HDF5_INCLUDE_DIRS}
24   ${PTHREAD_INCLUDE_DIRS}
25   ${KERNEL_ROOT_DIR}/include/salome
26   ${CMAKE_CURRENT_BINARY_DIR}
27   ${CMAKE_BINARY_DIR}/idl
28   ${CMAKE_SOURCE_DIR}/src/MEDCoupling
29   ${CMAKE_SOURCE_DIR}/src/INTERP_KERNEL/Bases
30   ${CMAKE_SOURCE_DIR}/src/INTERP_KERNEL
31   ${CMAKE_SOURCE_DIR}/src/MEDLoader
32 )
33
34 SET(MEDOPFactoryEngine_SOURCES
35   MEDDataManager_i.cxx
36   MEDCalculator_i.cxx
37   MEDOPFactory_i.cxx
38 )
39 SET(COMMON_LIBS
40   medloader
41   SalomeIDLMED
42   ${TOOLSDS}
43   ${SalomeHDFPersist}
44   ${SalomeContainer}
45   ${SalomeCommunication}
46   ${SalomeKernelHelpers}
47   ${SalomeLifeCycleCORBA}
48   ${SALOMELocalTrace}
49   ${SALOMEBasics} 
50   ${SalomeGenericObj}
51   medcoupling
52   interpkernel
53   ${MED3_LIBS_C_ONLY}
54   ${HDF5_LIBS}
55   ${OMNIORB_LIBS}
56   ${PLATFORM_LIBS}
57 )
58 SET(COMMON_FLAGS "${HDF5_DEFINITIONS} ${MED3_DEFINITIONS} ${PLATFORM_DEFINITIONS} ${OMNIORB_DEFINITIONS}")
59 # This undefines the macros MIN and MAX which are specified in the windows headers 
60 IF(WINDOWS)
61   SET(COMMON_FLAGS "${COMMON_FLAGS} -DNOMINMAX")
62 ENDIF(WINDOWS)
63
64 ADD_LIBRARY(MEDOPFactoryEngine SHARED ${MEDOPFactoryEngine_SOURCES})
65 SET_TARGET_PROPERTIES(MEDOPFactoryEngine PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
66 TARGET_LINK_LIBRARIES(MEDOPFactoryEngine SalomeIDLMED ${COMMON_LIBS})
67
68 INSTALL(TARGETS MEDOPFactoryEngine DESTINATION ${MED_salomelib_LIBS})
69
70 FILE(GLOB MEDOPFactoryEngine_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx")
71 INSTALL(FILES ${MEDOPFactoryEngine_HEADERS_HXX} DESTINATION ${MED_salomeinclude_HEADERS})
72
73 INSTALL(FILES test_medop_components.py PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ DESTINATION ${MED_salomebin_BINS}/xmed)