summaryrefslogtreecommitdiff
path: root/cmake/Modules/FindSMI.cmake
blob: 187d2c7254872ce4bdc0449578ce9d606b61fb47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Try to find libsmi.
#

# Try to find the header
find_path(SMI_INCLUDE_DIR smi.h)

# Try to find the library
find_library(SMI_LIBRARY smi)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(SMI
  DEFAULT_MSG
  SMI_INCLUDE_DIR
  SMI_LIBRARY
)

mark_as_advanced(
  SMI_INCLUDE_DIR
  SMI_LIBRARY
)