mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
40 lines
946 B
CMake
40 lines
946 B
CMake
#
|
|
# Find the native CGNS includes and library
|
|
#
|
|
# CGNS_INCLUDE_DIR - where to find cgns.h, etc.
|
|
# CGNS_LIBRARIES - List of fully qualified libraries to link against when using CGNS.
|
|
# CGNS_FOUND - Do not attempt to use CGNS if "no" or undefined.
|
|
|
|
find_path(CGNS_INCLUDE_DIR cgnslib.h
|
|
/usr/local/include
|
|
/usr/include
|
|
)
|
|
|
|
find_library(CGNS_LIBRARY cgns
|
|
/usr/local/lib
|
|
/usr/lib
|
|
)
|
|
|
|
set(CGNS_FOUND "NO")
|
|
if(CGNS_INCLUDE_DIR)
|
|
if(CGNS_LIBRARY)
|
|
set( CGNS_LIBRARIES ${CGNS_LIBRARY} )
|
|
set( CGNS_FOUND "YES" )
|
|
endif()
|
|
endif()
|
|
|
|
if(CGNS_FIND_REQUIRED AND NOT CGNS_FOUND)
|
|
message(SEND_ERROR "Unable to find the requested CGNS libraries.")
|
|
endif()
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set CGNS_FOUND to TRUE if
|
|
# all listed variables are TRUE
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(CGNS DEFAULT_MSG CGNS_LIBRARY CGNS_INCLUDE_DIR)
|
|
|
|
|
|
mark_as_advanced(
|
|
CGNS_INCLUDE_DIR
|
|
CGNS_LIBRARY
|
|
)
|