diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:41:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:41:34 +0000 |
commit | f7b5fc832288fae3f5a0f3d24b96782252aabbaf (patch) | |
tree | 711bd849ca1348d3c97dc9bbbd157b80e9c410aa /cmake/Modules/FindSMI.cmake | |
parent | Initial commit. (diff) | |
download | tcpdump-f7b5fc832288fae3f5a0f3d24b96782252aabbaf.tar.xz tcpdump-f7b5fc832288fae3f5a0f3d24b96782252aabbaf.zip |
Adding upstream version 4.99.3.upstream/4.99.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'cmake/Modules/FindSMI.cmake')
-rw-r--r-- | cmake/Modules/FindSMI.cmake | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cmake/Modules/FindSMI.cmake b/cmake/Modules/FindSMI.cmake new file mode 100644 index 0000000..98c1071 --- /dev/null +++ b/cmake/Modules/FindSMI.cmake @@ -0,0 +1,24 @@ +# +# 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 +) + +set(SMI_INCLUDE_DIRS ${SMI_INCLUDE_DIR}) +set(SMI_LIBRARIES ${SMI_LIBRARY}) |