2010-06-13 16:06:23 -05:00
# - Find the Metis includes and libraries.
# The following variables are set if Coriolis is found. If METIS is not
# found, METIS_FOUND is set to false.
# METIS_FOUND - True when the Coriolis include directory is found.
# METIS_INCLUDE_DIR - the path to where the Coriolis include files are.
# METIS_LIBRARIES - The path to where the Coriolis library files are.
2021-08-27 11:15:28 -05:00
SET ( METIS_INCLUDE_PATH_DESCRIPTION "directory containing the Metis/hmetis include files. E.g /usr/local/include/coriolis2 or /asim/coriolis/include/coriolis2" )
2010-06-13 16:06:23 -05:00
SET ( METIS_DIR_MESSAGE "Set the METIS_INCLUDE_DIR cmake cache entry to the ${METIS_INCLUDE_PATH_DESCRIPTION}" )
# don't even bother under WIN32
IF ( UNIX )
#
# Look for an installation.
#
FIND_PATH ( METIS_INCLUDE_PATH NAMES metis/MetisEngine.h PATHS
# Look in other places.
$ { C O R I O L I S _ D I R _ S E A R C H }
P A T H _ S U F F I X E S i n c l u d e / c o r i o l i s 2
# Help the user find it if we cannot.
D O C " T h e $ { M E T I S _ I N C L U D E _ P A T H _ D E S C R I P T I O N } "
)
FIND_LIBRARY ( METIS_LIBRARY_PATH
N A M E S m e t i s
P A T H S $ { C O R I O L I S _ D I R _ S E A R C H }
2020-03-19 12:18:35 -05:00
P A T H _ S U F F I X E S l i b 6 4 l i b
2010-06-13 16:06:23 -05:00
# Help the user find it if we cannot.
D O C " T h e $ { M E T I S _ I N C L U D E _ P A T H _ D E S C R I P T I O N } "
)
SET ( HMETIS_INCLUDE_PATH METIS_INCLUDE_PATH )
FIND_LIBRARY ( HMETIS_LIBRARY_PATH
N A M E S h m e t i s
2012-11-16 06:51:59 -06:00
P A T H S $ { C O R I O L I S _ D I R _ S E A R C H }
2020-03-19 12:18:35 -05:00
P A T H _ S U F F I X E S l i b 6 4 l i b
2010-06-13 16:06:23 -05:00
# Help the user find it if we cannot.
D O C " T h e $ { M E T I S _ I N C L U D E _ P A T H _ D E S C R I P T I O N } "
)
SET_LIBRARIES_PATH ( METIS METIS )
SET_LIBRARIES_PATH ( HMETIS HMETIS )
HURRICANE_CHECK_LIBRARIES ( METIS )
ENDIF ( UNIX )