1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#------------------------------------------------------------------------------#
# Distributed under the OSI-approved Apache License, Version 2.0. See
# accompanying file Copyright.txt for details.
#------------------------------------------------------------------------------#
#
# FindSZ
# -----------
#
# Try to find the SZ library
#
# This module defines the following variables:
#
# SZ_FOUND - System has SZ
# SZ_INCLUDE_DIRS - The SZ include directory
# SZ_LIBRARIES - Link these to use SZ
#
# and the following imported targets:
# SZ::SZ - The SZ compression library target
#
# You can also set the following variable to help guide the search:
# SZ_ROOT - The install prefix for SZ containing the
# include and lib folders
# Note: this can be set as a CMake variable or an
# environment variable. If specified as a CMake
# variable, it will override any setting specified
# as an environment variable.
if(NOT SZ_FOUND)
if((NOT SZ_ROOT) AND (NOT (ENV{SZ_ROOT} STREQUAL "")))
set(SZ_ROOT "$ENV{SZ_ROOT}")
endif()
if(SZ_ROOT)
set(SZ_INCLUDE_OPTS HINTS ${SZ_ROOT}/include NO_DEFAULT_PATHS)
set(SZ_LIBRARY_OPTS
HINTS ${SZ_ROOT}/lib ${SZ_ROOT}/lib64
NO_DEFAULT_PATHS
)
endif()
find_path(SZ_INCLUDE_DIR sz.h PATH_SUFFIXES sz ${SZ_INCLUDE_OPTS})
find_library(SZ_LIBRARY NAMES SZ ${SZ_LIBRARY_OPTS})
find_library(ZLIB_LIBRARY NAMES z zlib ${SZ_LIBRARY_OPTS})
find_library(ZSTD_LIBRARY NAMES zstd ${SZ_LIBRARY_OPTS})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(SZ
FOUND_VAR SZ_FOUND
REQUIRED_VARS SZ_LIBRARY ZLIB_LIBRARY ZSTD_LIBRARY SZ_INCLUDE_DIR
)
if(SZ_FOUND)
set(SZ_INCLUDE_DIRS ${SZ_INCLUDE_DIR})
set(SZ_LIBRARIES ${SZ_LIBRARY} ${ZLIB_LIBRARY} ${ZSTD_LIBRARY})
if(SZ_FOUND AND NOT TARGET SZ::SZ)
add_library(SZ::SZ UNKNOWN IMPORTED)
set_target_properties(SZ::SZ PROPERTIES
IMPORTED_LOCATION "${SZ_LIBRARY}"
INTERFACE_LINK_LIBRARIES "${SZ_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${SZ_INCLUDE_DIR}"
)
endif()
endif()
endif()
|