]> git.proxmox.com Git - ceph.git/blame - ceph/cmake/modules/Findqatzip.cmake
import 15.2.9
[ceph.git] / ceph / cmake / modules / Findqatzip.cmake
CommitLineData
11fdf7f2
TL
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
8find_path(QATZIP_INCLUDE_DIR NAMES qatzip.h)
9
10find_library(QATZIP_LIBRARIES NAMES qatzip)
11
12include(FindPackageHandleStandardArgs)
13find_package_handle_standard_args(qatzip DEFAULT_MSG QATZIP_LIBRARIES QATZIP_INCLUDE_DIR)
14
15mark_as_advanced(
16 QATZIP_LIBRARIES
17 QATZIP_INCLUDE_DIR)