diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /cmake/modules/Findzbd.cmake | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | cmake/modules/Findzbd.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cmake/modules/Findzbd.cmake b/cmake/modules/Findzbd.cmake new file mode 100644 index 000000000..f4b23ef2f --- /dev/null +++ b/cmake/modules/Findzbd.cmake @@ -0,0 +1,19 @@ +# - Find ZBD +# +# ZBD_INCLUDE - Where to find zbd.h +# ZBD_LIBRARIES - List of libraries when using zbd. +# ZBD_FOUND - True if zbd found. + +find_path(ZBD_INCLUDE_DIR + zbd.h + HINTS $ENV{ZBD_ROOT}/libzbd + PATH_SUFFIXES libzbd) + +find_library(ZBD_LIBRARIES + zbd + HINTS $ENV{ZBD_ROOT}/lib) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(zbd DEFAULT_MSG ZBD_LIBRARIES ZBD_INCLUDE_DIR) + +mark_as_advanced(ZBD_INCLUDE_DIR ZBD_LIBRARIES) |