From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- cmake/modules/Findqatzip.cmake | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cmake/modules/Findqatzip.cmake (limited to 'cmake/modules/Findqatzip.cmake') diff --git a/cmake/modules/Findqatzip.cmake b/cmake/modules/Findqatzip.cmake new file mode 100644 index 000000000..2d0f2ace3 --- /dev/null +++ b/cmake/modules/Findqatzip.cmake @@ -0,0 +1,24 @@ +# - Find qatzip +# Find the qatzip compression library and includes +# +# qatzip_INCLUDE_DIR - where to find qatzip.h, etc. +# qatzip_LIBRARIES - List of libraries when using qatzip. +# qatzip_FOUND - True if qatzip found. + +find_path(qatzip_INCLUDE_DIR NAMES qatzip.h) +find_library(qatzip_LIBRARIES NAMES qatzip HINTS /usr/local/lib64/) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(qatzip DEFAULT_MSG qatzip_LIBRARIES qatzip_INCLUDE_DIR) + +mark_as_advanced( + qatzip_LIBRARIES + qatzip_INCLUDE_DIR) + +if(qatzip_FOUND AND NOT TARGET qatzip::qatzip) + add_library(qatzip::qatzip SHARED IMPORTED) + set_target_properties(qatzip::qatzip PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${qatzip_INCLUDE_DIR}" + IMPORTED_LINK_INTERFACE_LANGUAGES "C" + IMPORTED_LOCATION "${qatzip_LIBRARIES}") +endif() -- cgit v1.2.3