From d3e1d1d0118726fab04f160e68f8ecb4cd1d0fa3 Mon Sep 17 00:00:00 2001 From: ageay Date: Thu, 22 Mar 2012 16:26:03 +0000 Subject: [PATCH] MED CMakization --- src/MED/CMakeLists.txt | 50 ++++++++++++++++++++++++++++++ src/MedCorba_Swig/CMakeLists.txt | 53 ++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 src/MED/CMakeLists.txt create mode 100644 src/MedCorba_Swig/CMakeLists.txt diff --git a/src/MED/CMakeLists.txt b/src/MED/CMakeLists.txt new file mode 100644 index 000000000..577648e02 --- /dev/null +++ b/src/MED/CMakeLists.txt @@ -0,0 +1,50 @@ +# Copyright (C) 2007-2011 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + +INCLUDE_DIRECTORIES( + ${OMNIORB_INCLUDES_DIR} + ${HDF5_INCLUDES_DIR} + ${MED3_INCLUDES_DIR} + ${XDR_INCLUDES_DIR} + ${KERNEL_ROOT_DIR}/include/salome + ${CMAKE_CURRENT_BINARY_DIR}/../../idl + ${CMAKE_CURRENT_SOURCE_DIR}/../MEDMEM_I + ${CMAKE_CURRENT_SOURCE_DIR}/../MEDMEM + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints + ) + +SET(MEDEngine_SOURCES + Med_Gen_i.cxx + Med_Gen_Driver_i.cxx + ) + +ADD_LIBRARY(MEDEngine SHARED ${MEDEngine_SOURCES}) +SET_TARGET_PROPERTIES(MEDEngine PROPERTIES COMPILE_FLAGS "${OMNIORB_FLAGS} ${HDF5_FLAGS} ${MED3_FLAGS} ${XDR_FLAGS}") +TARGET_LINK_LIBRARIES(MEDEngine MEDMEMImpl SalomeIDLMED ${TOOLSDS} ${SalomeHDFPersist} ${SalomeContainer} ${SalomeCommunication} ${SalomeLifeCycleCORBA}) +INSTALL(TARGETS MEDEngine DESTINATION ${MED_salomelib_LIBS}) + +SET(MED_MED_salomescript_DATA + MED_test1.py MED_test2.py Med_Gen_test.py testMedAlliances.py testMedAlliances1.py + ) + +FILE(GLOB MEDEngine_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx") +INSTALL(FILES ${MEDEngine_HEADERS_HXX} DESTINATION ${MED_salomeinclude_HEADERS}) +INSTALL(FILES ${MED_MED_salomescript_DATA} DESTINATION ${MED_salomescript_DATA}) diff --git a/src/MedCorba_Swig/CMakeLists.txt b/src/MedCorba_Swig/CMakeLists.txt new file mode 100644 index 000000000..6d83db0d3 --- /dev/null +++ b/src/MedCorba_Swig/CMakeLists.txt @@ -0,0 +1,53 @@ +# Copyright (C) 2007-2011 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + +FIND_PACKAGE(SWIG REQUIRED) +INCLUDE(${SWIG_USE_FILE}) + +SET_SOURCE_FILES_PROPERTIES(libMedCorba_Swig.i PROPERTIES CPLUSPLUS ON) +SET_SOURCE_FILES_PROPERTIES(libMedCorba_Swig.i PROPERTIES SWIG_FLAGS "-shadow") + +INCLUDE_DIRECTORIES( + ${PYTHON_INCLUDE_PATH} + ${OMNIORB_INCLUDES_DIR} + ${MED3_INCLUDES_DIR} + ${HDF5_INCLUDES_DIR} + ${KERNEL_ROOT_DIR}/include/salome + ${CMAKE_CURRENT_BINARY_DIR}/../../idl + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/../MED + ${CMAKE_CURRENT_SOURCE_DIR}/../MEDMEM_I + ${CMAKE_CURRENT_SOURCE_DIR}/../MEDMEM + ${CMAKE_CURRENT_SOURCE_DIR}/../MEDMEM_SWIG + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases + ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints + ) + +SWIG_ADD_MODULE(libMedCorba_Swig python libMedCorba_Swig.i) +SWIG_LINK_LIBRARIES(libMedCorba_Swig ${PYTHON_LIBRARIES} MEDMEMImpl MEDEngine) +SET_TARGET_PROPERTIES(_libMedCorba_Swig PROPERTIES COMPILE_FLAGS "${OMNIORB_FLAGS} ${HDF5_FLAGS} ${MED3_FLAGS} ${XDR_FLAGS}") + +SET(MED_MedCorba_Swig_salomescript_DATA + medcorba_test.py batchmode_medcorba_test.py batchmode_medcorba_test1.py + ) + +INSTALL(TARGETS _libMedCorba_Swig DESTINATION ${MED_salomepythondir}) +INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libMedCorba_Swig.py DESTINATION ${MED_salomescript_PYTHON}) +INSTALL(FILES ${MED_MedCorba_Swig_salomescript_DATA} DESTINATION ${MED_salomescript_DATA}) -- 2.39.2