pineapple-src/externals/find-modules/Findzstd.cmake

27 lines
836 B
CMake
Raw Normal View History

2022-11-05 12:58:44 +00:00
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
2022-12-04 19:53:13 +00:00
include(FindPackageHandleStandardArgs)
2022-11-05 12:58:44 +00:00
2022-12-04 19:53:13 +00:00
find_package(zstd QUIET CONFIG)
2023-01-02 10:31:38 +00:00
if (zstd_CONSIDERED_CONFIGS)
2022-12-04 19:53:13 +00:00
find_package_handle_standard_args(zstd CONFIG_MODE)
else()
find_package(PkgConfig QUIET)
2022-12-15 18:29:31 +00:00
pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd)
2022-12-04 19:53:13 +00:00
find_package_handle_standard_args(zstd
2022-12-06 16:31:52 +00:00
REQUIRED_VARS ZSTD_LINK_LIBRARIES
VERSION_VAR ZSTD_VERSION
2022-12-04 19:53:13 +00:00
)
2022-11-05 12:58:44 +00:00
endif()
2022-12-06 16:31:52 +00:00
if (zstd_FOUND AND NOT TARGET zstd::zstd)
if (TARGET zstd::libzstd_shared)
add_library(zstd::zstd ALIAS zstd::libzstd_shared)
elseif (TARGET zstd::libzstd_static)
add_library(zstd::zstd ALIAS zstd::libzstd_static)
else()
add_library(zstd::zstd ALIAS PkgConfig::ZSTD)
endif()
endif()