123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if (NOT SCOTCH_FOUND)
- set(SCOTCH_DIR "" CACHE PATH "Installation directory of SCOTCH library")
- if (NOT SCOTCH_FIND_QUIETLY)
- message(STATUS "A cache variable, namely SCOTCH_DIR, has been set to specify the install directory of SCOTCH")
- endif()
- endif()
-
-
- set(SCOTCH_LOOK_FOR_ESMUMPS OFF)
-
- if( SCOTCH_FIND_COMPONENTS )
- foreach( component ${SCOTCH_FIND_COMPONENTS} )
- if (${component} STREQUAL "ESMUMPS")
-
- set(SCOTCH_LOOK_FOR_ESMUMPS ON)
- endif()
- endforeach()
- endif()
-
-
- if (NOT THREADS_FOUND)
- if (SCOTCH_FIND_REQUIRED)
- find_package(Threads REQUIRED)
- else()
- find_package(Threads)
- endif()
- endif()
-
-
-
-
-
-
- unset(_inc_env)
- set(ENV_SCOTCH_DIR "$ENV{SCOTCH_DIR}")
- set(ENV_SCOTCH_INCDIR "$ENV{SCOTCH_INCDIR}")
- if(ENV_SCOTCH_INCDIR)
- list(APPEND _inc_env "${ENV_SCOTCH_INCDIR}")
- elseif(ENV_SCOTCH_DIR)
- list(APPEND _inc_env "${ENV_SCOTCH_DIR}")
- list(APPEND _inc_env "${ENV_SCOTCH_DIR}/include")
- list(APPEND _inc_env "${ENV_SCOTCH_DIR}/include/scotch")
- else()
- if(WIN32)
- string(REPLACE ":" ";" _inc_env "$ENV{INCLUDE}")
- else()
- string(REPLACE ":" ";" _path_env "$ENV{INCLUDE}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{C_INCLUDE_PATH}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{CPATH}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{INCLUDE_PATH}")
- list(APPEND _inc_env "${_path_env}")
- endif()
- endif()
- list(APPEND _inc_env "${CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES}")
- list(APPEND _inc_env "${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES}")
- list(REMOVE_DUPLICATES _inc_env)
-
-
-
-
-
- if(SCOTCH_INCDIR)
- set(SCOTCH_scotch.h_DIRS "SCOTCH_scotch.h_DIRS-NOTFOUND")
- find_path(SCOTCH_scotch.h_DIRS
- NAMES scotch.h
- HINTS ${SCOTCH_INCDIR})
- else()
- if(SCOTCH_DIR)
- set(SCOTCH_scotch.h_DIRS "SCOTCH_scotch.h_DIRS-NOTFOUND")
- find_path(SCOTCH_scotch.h_DIRS
- NAMES scotch.h
- HINTS ${SCOTCH_DIR}
- PATH_SUFFIXES "include" "include/scotch")
- else()
- set(SCOTCH_scotch.h_DIRS "SCOTCH_scotch.h_DIRS-NOTFOUND")
- find_path(SCOTCH_scotch.h_DIRS
- NAMES scotch.h
- HINTS ${_inc_env}
- PATH_SUFFIXES "scotch")
- endif()
- endif()
- mark_as_advanced(SCOTCH_scotch.h_DIRS)
-
-
-
- if (SCOTCH_scotch.h_DIRS)
- set(SCOTCH_INCLUDE_DIRS "${SCOTCH_scotch.h_DIRS}")
- else ()
- set(SCOTCH_INCLUDE_DIRS "SCOTCH_INCLUDE_DIRS-NOTFOUND")
- if (NOT SCOTCH_FIND_QUIETLY)
- message(STATUS "Looking for scotch -- scotch.h not found")
- endif()
- endif()
- list(REMOVE_DUPLICATES SCOTCH_INCLUDE_DIRS)
-
-
-
-
-
-
- unset(_lib_env)
- set(ENV_SCOTCH_LIBDIR "$ENV{SCOTCH_LIBDIR}")
- if(ENV_SCOTCH_LIBDIR)
- list(APPEND _lib_env "${ENV_SCOTCH_LIBDIR}")
- elseif(ENV_SCOTCH_DIR)
- list(APPEND _lib_env "${ENV_SCOTCH_DIR}")
- list(APPEND _lib_env "${ENV_SCOTCH_DIR}/lib")
- else()
- if(WIN32)
- string(REPLACE ":" ";" _lib_env "$ENV{LIB}")
- else()
- if(APPLE)
- string(REPLACE ":" ";" _lib_env "$ENV{DYLD_LIBRARY_PATH}")
- else()
- string(REPLACE ":" ";" _lib_env "$ENV{LD_LIBRARY_PATH}")
- endif()
- list(APPEND _lib_env "${CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES}")
- list(APPEND _lib_env "${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}")
- endif()
- endif()
- list(REMOVE_DUPLICATES _lib_env)
-
-
-
-
- set(SCOTCH_libs_to_find "scotch;scotcherrexit")
- if (SCOTCH_LOOK_FOR_ESMUMPS)
- list(INSERT SCOTCH_libs_to_find 0 "esmumps")
- endif()
-
-
- if(SCOTCH_LIBDIR)
- foreach(scotch_lib ${SCOTCH_libs_to_find})
- set(SCOTCH_${scotch_lib}_LIBRARY "SCOTCH_${scotch_lib}_LIBRARY-NOTFOUND")
- find_library(SCOTCH_${scotch_lib}_LIBRARY
- NAMES ${scotch_lib}
- HINTS ${SCOTCH_LIBDIR})
- endforeach()
- else()
- if(SCOTCH_DIR)
- foreach(scotch_lib ${SCOTCH_libs_to_find})
- set(SCOTCH_${scotch_lib}_LIBRARY "SCOTCH_${scotch_lib}_LIBRARY-NOTFOUND")
- find_library(SCOTCH_${scotch_lib}_LIBRARY
- NAMES ${scotch_lib}
- HINTS ${SCOTCH_DIR}
- PATH_SUFFIXES lib lib32 lib64)
- endforeach()
- else()
- foreach(scotch_lib ${SCOTCH_libs_to_find})
- set(SCOTCH_${scotch_lib}_LIBRARY "SCOTCH_${scotch_lib}_LIBRARY-NOTFOUND")
- find_library(SCOTCH_${scotch_lib}_LIBRARY
- NAMES ${scotch_lib}
- HINTS ${_lib_env})
- endforeach()
- endif()
- endif()
-
- set(SCOTCH_LIBRARIES "")
- set(SCOTCH_LIBRARY_DIRS "")
-
-
- foreach(scotch_lib ${SCOTCH_libs_to_find})
-
- if (SCOTCH_${scotch_lib}_LIBRARY)
- get_filename_component(${scotch_lib}_lib_path "${SCOTCH_${scotch_lib}_LIBRARY}" PATH)
-
- list(APPEND SCOTCH_LIBRARIES "${SCOTCH_${scotch_lib}_LIBRARY}")
- list(APPEND SCOTCH_LIBRARY_DIRS "${${scotch_lib}_lib_path}")
- else ()
- list(APPEND SCOTCH_LIBRARIES "${SCOTCH_${scotch_lib}_LIBRARY}")
- if (NOT SCOTCH_FIND_QUIETLY)
- message(STATUS "Looking for scotch -- lib ${scotch_lib} not found")
- endif()
- endif ()
-
- mark_as_advanced(SCOTCH_${scotch_lib}_LIBRARY)
-
- endforeach()
- list(REMOVE_DUPLICATES SCOTCH_LIBRARY_DIRS)
-
-
- if(SCOTCH_LIBRARIES)
-
- set(REQUIRED_INCDIRS)
- set(REQUIRED_LIBDIRS)
- set(REQUIRED_LIBS)
-
-
- if (SCOTCH_INCLUDE_DIRS)
- set(REQUIRED_INCDIRS "${SCOTCH_INCLUDE_DIRS}")
- endif()
- if (SCOTCH_LIBRARY_DIRS)
- set(REQUIRED_LIBDIRS "${SCOTCH_LIBRARY_DIRS}")
- endif()
- set(REQUIRED_LIBS "${SCOTCH_LIBRARIES}")
-
- if(CMAKE_THREAD_LIBS_INIT)
- list(APPEND REQUIRED_LIBS "${CMAKE_THREAD_LIBS_INIT}")
- endif()
- set(Z_LIBRARY "Z_LIBRARY-NOTFOUND")
- find_library(Z_LIBRARY NAMES z)
- mark_as_advanced(Z_LIBRARY)
- if(Z_LIBRARY)
- list(APPEND REQUIRED_LIBS "-lz")
- endif()
- set(M_LIBRARY "M_LIBRARY-NOTFOUND")
- find_library(M_LIBRARY NAMES m)
- mark_as_advanced(M_LIBRARY)
- if(M_LIBRARY)
- list(APPEND REQUIRED_LIBS "-lm")
- endif()
- set(RT_LIBRARY "RT_LIBRARY-NOTFOUND")
- find_library(RT_LIBRARY NAMES rt)
- mark_as_advanced(RT_LIBRARY)
- if(RT_LIBRARY)
- list(APPEND REQUIRED_LIBS "-lrt")
- endif()
-
-
- set(CMAKE_REQUIRED_INCLUDES "${REQUIRED_INCDIRS}")
- set(CMAKE_REQUIRED_LIBRARIES)
- foreach(lib_dir ${REQUIRED_LIBDIRS})
- list(APPEND CMAKE_REQUIRED_LIBRARIES "-L${lib_dir}")
- endforeach()
- list(APPEND CMAKE_REQUIRED_LIBRARIES "${REQUIRED_LIBS}")
- string(REGEX REPLACE "^ -" "-" CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES}")
-
-
- unset(SCOTCH_WORKS CACHE)
- include(CheckFunctionExists)
- check_function_exists(SCOTCH_graphInit SCOTCH_WORKS)
- mark_as_advanced(SCOTCH_WORKS)
-
- if(SCOTCH_WORKS)
-
- set(SCOTCH_LIBRARIES "${REQUIRED_LIBS}")
- else()
- if(NOT SCOTCH_FIND_QUIETLY)
- message(STATUS "Looking for SCOTCH : test of SCOTCH_graphInit with SCOTCH library fails")
- message(STATUS "CMAKE_REQUIRED_LIBRARIES: ${CMAKE_REQUIRED_LIBRARIES}")
- message(STATUS "CMAKE_REQUIRED_INCLUDES: ${CMAKE_REQUIRED_INCLUDES}")
- message(STATUS "Check in CMakeFiles/CMakeError.log to figure out why it fails")
- endif()
- endif()
- set(CMAKE_REQUIRED_INCLUDES)
- set(CMAKE_REQUIRED_FLAGS)
- set(CMAKE_REQUIRED_LIBRARIES)
- endif(SCOTCH_LIBRARIES)
-
- if (SCOTCH_LIBRARIES)
- list(GET SCOTCH_LIBRARIES 0 first_lib)
- get_filename_component(first_lib_path "${first_lib}" PATH)
- if (${first_lib_path} MATCHES "/lib(32|64)?$")
- string(REGEX REPLACE "/lib(32|64)?$" "" not_cached_dir "${first_lib_path}")
- set(SCOTCH_DIR_FOUND "${not_cached_dir}" CACHE PATH "Installation directory of SCOTCH library" FORCE)
- else()
- set(SCOTCH_DIR_FOUND "${first_lib_path}" CACHE PATH "Installation directory of SCOTCH library" FORCE)
- endif()
- endif()
- mark_as_advanced(SCOTCH_DIR)
- mark_as_advanced(SCOTCH_DIR_FOUND)
-
-
-
- set(CMAKE_REQUIRED_INCLUDES ${SCOTCH_INCLUDE_DIRS})
-
- include(CheckCSourceRuns)
-
- set(SCOTCH_C_TEST_SCOTCH_Num_4 "
- #include <stdio.h>
- #include <stdint.h>
- #include <scotch.h>
- int main(int argc, char **argv) {
- if (sizeof(SCOTCH_Num) == 4)
- return 0;
- else
- return 1;
- }
- ")
-
- set(SCOTCH_C_TEST_SCOTCH_Num_8 "
- #include <stdio.h>
- #include <stdint.h>
- #include <scotch.h>
- int main(int argc, char **argv) {
- if (sizeof(SCOTCH_Num) == 8)
- return 0;
- else
- return 1;
- }
- ")
- check_c_source_runs("${SCOTCH_C_TEST_SCOTCH_Num_4}" SCOTCH_Num_4)
- if(NOT SCOTCH_Num_4)
- check_c_source_runs("${SCOTCH_C_TEST_SCOTCH_Num_8}" SCOTCH_Num_8)
- if(NOT SCOTCH_Num_8)
- set(SCOTCH_INTSIZE -1)
- else()
- set(SCOTCH_INTSIZE 8)
- endif()
- else()
- set(SCOTCH_INTSIZE 4)
- endif()
- set(CMAKE_REQUIRED_INCLUDES "")
-
-
-
- include(FindPackageHandleStandardArgs)
- find_package_handle_standard_args(SCOTCH DEFAULT_MSG
- SCOTCH_LIBRARIES
- SCOTCH_WORKS)
-
-
|