2 # Try to find the Myricom SNF library.
5 # Try to find the header
6 find_path(SNF_INCLUDE_DIR snf.h /opt/snf)
8 # Try to find the library
9 find_library(SNF_LIBRARY snf /opt/snf)
12 # Get link information from the _LIBRARY paths.
14 get_link_info_from_library_path(SNF snf)
16 include(FindPackageHandleStandardArgs)
17 find_package_handle_standard_args(SNF
28 set(SNF_INCLUDE_DIRS ${SNF_INCLUDE_DIR})
29 set(SNF_LIBRARIES ${SNF_LIBRARY})
30 set(SNF_STATIC_LIBRARIES ${SNF_LIBRARY})