2010-03-09 09:25:53 -06:00
# - Find the Solstice includes and libraries.
# The following variables are set if Coriolis is found. If SOLSTICE is not
# found, SOLSTICE_FOUND is set to false.
# SOLSTICE_FOUND - True when the Coriolis include directory is found.
# SOLSTICE_INCLUDE_DIR - the path to where the Coriolis include files are.
# SOLSTICE_LIBRARIES - The path to where the Coriolis library files are.
2021-08-27 11:15:28 -05:00
SET ( SOLSTICE_INCLUDE_PATH_DESCRIPTION "directory containing the Solstice include files. E.g /usr/local/include/coriolis2 or /asim/coriolis/include/coriolis2" )
2010-03-09 09:25:53 -06:00
SET ( SOLSTICE_DIR_MESSAGE "Set the SOLSTICE_INCLUDE_DIR cmake cache entry to the ${SOLSTICE_INCLUDE_PATH_DESCRIPTION}" )
# don't even bother under WIN32
IF ( UNIX )
#
# Look for an installation.
#
2021-08-27 14:48:19 -05:00
FIND_PATH ( SOLSTICE_INCLUDE_PATH NAMES solstice/Brick.h PATHS
2010-03-09 09:25:53 -06:00
# Look in other places.
2010-03-18 10:33:05 -05:00
$ { C O R I O L I S _ D I R _ S E A R C H }
2021-08-27 11:15:28 -05:00
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
2010-03-09 09:25:53 -06:00
# Help the user find it if we cannot.
D O C " T h e $ { S O L S T I C E _ I N C L U D E _ P A T H _ D E S C R I P T I O N } "
)
FIND_LIBRARY ( SOLSTICE_LIBRARY_PATH
N A M E S s o l s t i c e
2010-03-18 10:33:05 -05: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-03-09 09:25:53 -06:00
# Help the user find it if we cannot.
D O C " T h e $ { S O L S T I C E _ 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 ( SOLSTICE SOLSTICE )
HURRICANE_CHECK_LIBRARIES ( SOLSTICE )
ENDIF ( UNIX )