Fix typo in FindETESIAN.cmake in include path searching.

This commit is contained in:
Jean-Paul Chaput 2021-01-27 10:59:58 +01:00
parent 5f6302de44
commit b926e02d92
1 changed files with 3 additions and 1 deletions

View File

@ -12,13 +12,15 @@ SET(ETESIAN_DIR_MESSAGE "Set the ETESIAN_INCLUDE_DIR cmake cache entry to the ${
# don't even bother under WIN32
IF(UNIX)
SETUP_SEARCH_DIR(CORIOLIS)
#
# Look for an installation.
#
FIND_PATH(ETESIAN_INCLUDE_PATH NAMES etesian/EtesianEngine.h PATHS
# Look in other places.
${CORIOLIS_DIR_SEARCH}
PATH_SUFFIXES include/coriolis
PATH_SUFFIXES include/coriolis2
# Help the user find it if we cannot.
DOC "The ${ETESIAN_INCLUDE_PATH_DESCRIPTION}"
)