2010-06-03 09:17:57 -05:00
# - Find the Nimbus includes and libraries.
# The following variables are set if Coriolis is found. If NIMBUS is not
# found, NIMBUS_FOUND is set to false.
# NIMBUS_FOUND - True when the Coriolis include directory is found.
# NIMBUS_INCLUDE_DIR - the path to where the Coriolis include files are.
# NIMBUS_LIBRARIES - The path to where the Coriolis library files are.
2021-08-27 11:15:28 -05:00
SET ( NIMBUS_INCLUDE_PATH_DESCRIPTION "directory containing the Nimbus include files. E.g /usr/local/include/coriolis2 or /asim/coriolis/include/coriolis2" )
2010-06-03 09:17:57 -05:00
SET ( NIMBUS_DIR_MESSAGE "Set the NIMBUS_INCLUDE_DIR cmake cache entry to the ${NIMBUS_INCLUDE_PATH_DESCRIPTION}" )
# don't even bother under WIN32
IF ( UNIX )
#
# Look for an installation.
#
2010-06-08 07:12:01 -05:00
FIND_PATH ( NIMBUS_INCLUDE_PATH NAMES nimbus/NimbusEngine.h PATHS
2010-06-03 09:17:57 -05:00
# 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 $ { N I M B U 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 ( NIMBUS_LIBRARY_PATH
N A M E S n i m b u 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-03 09:17:57 -05:00
# Help the user find it if we cannot.
D O C " T h e $ { N I M B U 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 ( NIMBUS NIMBUS )
HURRICANE_CHECK_LIBRARIES ( NIMBUS )
ENDIF ( UNIX )