Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
49 lines
1.1 KiB
CMake
49 lines
1.1 KiB
CMake
#
|
|
# Copyright 2022-present ScyllaDB
|
|
#
|
|
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
#
|
|
|
|
find_package (PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules (PC_deflate QUIET libdeflate)
|
|
|
|
find_library (deflate_LIBRARY
|
|
NAMES deflate
|
|
HINTS
|
|
${PC_deflate_LIBDIR}
|
|
${PC_deflate_LIBRARY_DIRS})
|
|
|
|
find_path (deflate_INCLUDE_DIR
|
|
NAMES libdeflate.h
|
|
HINTS
|
|
${PC_deflate_INCLUDEDIR}
|
|
${PC_deflate_INCLUDE_DIRS})
|
|
|
|
mark_as_advanced (
|
|
deflate_LIBRARY
|
|
deflate_INCLUDE_DIR)
|
|
|
|
include (FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args (libdeflate
|
|
REQUIRED_VARS
|
|
deflate_LIBRARY
|
|
deflate_INCLUDE_DIR
|
|
VERSION_VAR PC_deflate_VERSION)
|
|
|
|
if (libdeflate_FOUND)
|
|
set (deflate_LIBRARIES ${deflate_LIBRARY})
|
|
set (deflate_INCLUDE_DIRS ${deflate_INCLUDE_DIR})
|
|
if (NOT (TARGET libdeflate::libdeflate))
|
|
add_library (libdeflate::libdeflate UNKNOWN IMPORTED)
|
|
|
|
set_target_properties (libdeflate::libdeflate
|
|
PROPERTIES
|
|
IMPORTED_LOCATION ${deflate_LIBRARY}
|
|
INTERFACE_INCLUDE_DIRECTORIES ${deflate_INCLUDE_DIRS})
|
|
endif ()
|
|
endif ()
|