2010-03-09 09:26:22 -06:00
# - Find the Unicorn includes and libraries.
# The following variables are set if Coriolis is found. If UNICORN is not
# found, UNICORN_FOUND is set to false.
# UNICORN_FOUND - True when the Coriolis include directory is found.
# UNICORN_INCLUDE_DIR - the path to where the Coriolis include files are.
# UNICORN_LIBRARIES - The path to where the Coriolis library files are.
2021-08-27 11:15:28 -05:00
SET ( UNICORN_INCLUDE_PATH_DESCRIPTION "directory containing the Unicorn include files. E.g /usr/local/include/coriolis2 or /asim/coriolis/include/coriolis2" )
2010-03-09 09:26:22 -06:00
SET ( UNICORN_DIR_MESSAGE "Set the UNICORN_INCLUDE_DIR cmake cache entry to the ${UNICORN_INCLUDE_PATH_DESCRIPTION}" )
# don't even bother under WIN32
IF ( UNIX )
#
# Look for an installation.
#
2015-03-21 11:29:04 -05:00
FIND_PATH ( UNICORN_INCLUDE_PATH NAMES unicorn/UnicornGui.h PATHS
2010-03-09 09:26:22 -06:00
# Look in other places.
2010-03-18 10:33:12 -05:00
$ { C O R I O L I S _ D I R _ S E A R C H }
2015-03-22 13:12:45 -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 i n c l u d e
2010-03-09 09:26:22 -06:00
# Help the user find it if we cannot.
D O C " T h e $ { U N I C O R N _ I N C L U D E _ P A T H _ D E S C R I P T I O N } "
)
FIND_LIBRARY ( UNICORN_LIBRARY_PATH
N A M E S u n i c o r n
2010-03-18 10:33:12 -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:26:22 -06:00
# Help the user find it if we cannot.
D O C " T h e $ { U N I C O R N _ 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 ( UNICORN UNICORN )
HURRICANE_CHECK_LIBRARIES ( UNICORN )
ENDIF ( UNIX )