From: ageay Date: Tue, 9 Jul 2013 10:15:21 +0000 (+0000) Subject: Addition of SCOTCH in MEDPartitioner. X-Git-Tag: B4KillOfAutomake~43 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=0131aa2cfe2811a9d4078f4db1e4d81503d13d3b;p=modules%2Fmed.git Addition of SCOTCH in MEDPartitioner. --- diff --git a/adm_local/cmake_files/FindScotch.cmake b/adm_local/cmake_files/FindScotch.cmake index b5c8f6b9d..e1657416f 100644 --- a/adm_local/cmake_files/FindScotch.cmake +++ b/adm_local/cmake_files/FindScotch.cmake @@ -27,6 +27,8 @@ IF(SCOTCH_ROOT_DIR) ENDIF(SCOTCH_ROOT_DIR) FIND_LIBRARY(SCOTCH_LIBRARIES scotch) +FIND_LIBRARY(SCOTCH_ERR_LIBRARIES scotcherr) +SET(SCOTCH_LIBRARIES ${SCOTCH_LIBRARIES} ${SCOTCH_ERR_LIBRARIES}) FIND_PATH(SCOTCH_INCLUDE_DIRS scotch.h) INCLUDE(FindPackageHandleStandardArgs) diff --git a/src/MEDPartitioner/CMakeLists.txt b/src/MEDPartitioner/CMakeLists.txt index 2cbd32485..e89c23e4c 100644 --- a/src/MEDPartitioner/CMakeLists.txt +++ b/src/MEDPartitioner/CMakeLists.txt @@ -33,10 +33,11 @@ INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/GaussPoints ) -IF(MED_ENABLE_SCOTCH) +IF(SALOME_MED_PARTITIONER_SCOTCH) ADD_DEFINITIONS(${SCOTCH_DEFINITIONS}) + ADD_DEFINITIONS("-DMED_ENABLE_SCOTCH") INCLUDE_DIRECTORIES(${SCOTCH_INCLUDE_DIRS}) -ENDIF(MED_ENABLE_SCOTCH) +ENDIF(SALOME_MED_PARTITIONER_SCOTCH) IF(SALOME_MED_PARTITIONER_METIS) ADD_DEFINITIONS(${METIS_DEFINITIONS}) @@ -113,12 +114,12 @@ IF(SALOME_MED_PARTITIONER_METIS) SET(medpartitionercpp_DEFINITIONS "${medpartitionercpp_DEFINITIONS} ${METIS_DEFINITIONS}") SET(medpartitionercpp_LDFLAGS ${medpartitionercpp_LDFLAGS} ${METIS_LIBRARIES}) ENDIF(SALOME_MED_PARTITIONER_METIS) -IF(MED_ENABLE_SCOTCH) +IF(SALOME_MED_PARTITIONER_SCOTCH) SET(medpartitionercpp_HEADERS_HXX ${medpartitionercpp_HEADERS_HXX} MEDPARTITIONER_ScotchGraph.hxx) SET(medpartitionercpp_SOURCES ${medpartitionercpp_SOURCES} MEDPARTITIONER_ScotchGraph.cxx) SET(medpartitionercpp_DEFINITIONS "${medpartitionercpp_DEFINITIONS} ${SCOTCH_DEFINITIONS}") - SET(medpartitionercpp_LDFLAGS ${medpartitionercpp_LDFLAGS} ${SCOTCH_LIBS}) -ENDIF(MED_ENABLE_SCOTCH) + SET(medpartitionercpp_LDFLAGS ${medpartitionercpp_LDFLAGS} ${SCOTCH_LIBRARIES}) +ENDIF(SALOME_MED_PARTITIONER_SCOTCH) IF(SALOME_USE_MPI) SET(medpartitionercpp_SOURCES ${medpartitionercpp_SOURCES}