5 # Try to find the header
6 find_path(SMI_INCLUDE_DIR smi.h)
8 # Try to find the library
9 find_library(SMI_LIBRARY smi)
11 include(FindPackageHandleStandardArgs)
12 find_package_handle_standard_args(SMI
23 set(SMI_INCLUDE_DIRS ${SMI_INCLUDE_DIR})
24 set(SMI_LIBRARIES ${SMI_LIBRARY})