]> git.proxmox.com Git - ceph.git/blob - ceph/cmake/modules/Findqatzip.cmake
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / cmake / modules / Findqatzip.cmake
1 # - Find Qatzip
2 # Find the qatzip compression library and includes
3 #
4 # QATZIP_INCLUDE_DIR - where to find qatzip.h, etc.
5 # QATZIP_LIBRARIES - List of libraries when using qatzip.
6 # QATZIP_FOUND - True if qatzip found.
7
8 find_path(QATZIP_INCLUDE_DIR NAMES qatzip.h)
9
10 find_library(QATZIP_LIBRARIES NAMES qatzip)
11
12 include(FindPackageHandleStandardArgs)
13 find_package_handle_standard_args(qatzip DEFAULT_MSG QATZIP_LIBRARIES QATZIP_INCLUDE_DIR)
14
15 mark_as_advanced(
16 QATZIP_LIBRARIES
17 QATZIP_INCLUDE_DIR)