mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
49 lines
1.2 KiB
CMake
49 lines
1.2 KiB
CMake
# Try to find SILO library and headers.
|
|
# This file sets the following variables:
|
|
#
|
|
# SILO_INCLUDE_DIR, where to find silo.h, etc.
|
|
# SILO_LIBRARIES, the libraries to link against
|
|
# SILO_FOUND, If false, do not try to use SILO.
|
|
#
|
|
# Also defined, but not for general use are:
|
|
# SILO_LIBRARY, the full path to the silo library.
|
|
# SILO_INCLUDE_PATH, for CMake backward compatibility
|
|
|
|
FIND_PATH( SILO_INCLUDE_DIR silo.h
|
|
/usr/local/include
|
|
/usr/include
|
|
)
|
|
|
|
FIND_LIBRARY( SILO_LIBRARY NAMES silo siloh5
|
|
/usr/lib
|
|
/usr/local/lib
|
|
)
|
|
|
|
SET( SILO_FOUND "NO" )
|
|
IF(SILO_INCLUDE_DIR)
|
|
IF(SILO_LIBRARY)
|
|
|
|
SET( SILO_LIBRARIES ${SILO_LIBRARY})
|
|
SET( SILO_FOUND "YES" )
|
|
|
|
#The following deprecated settings are for backwards compatibility with CMake1.4
|
|
SET (SILO_INCLUDE_PATH ${SILO_INCLUDE_DIR})
|
|
|
|
ELSE()
|
|
IF(SILO_FIND_REQURIED)
|
|
message(SEND_ERROR "Unable to find the requested SILO libraries.")
|
|
ENDIF()
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set SILO_FOUND to TRUE if
|
|
# all listed variables are TRUE
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(SILO DEFAULT_MSG SILO_LIBRARY SILO_INCLUDE_DIR)
|
|
|
|
|
|
MARK_AS_ADVANCED(
|
|
SILO_INCLUDE_DIR
|
|
SILO_LIBRARY
|
|
)
|