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

27 lines
836 B
CMake
Raw Permalink Normal View History

2022-11-06 01:58:44 +13:00
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
2022-12-05 08:53:13 +13:00
include(FindPackageHandleStandardArgs)
2022-11-06 01:58:44 +13:00
2022-12-05 08:53:13 +13:00
find_package(zstd QUIET CONFIG)
2023-01-02 23:31:38 +13:00
if (zstd_CONSIDERED_CONFIGS)
2022-12-05 08:53:13 +13:00
find_package_handle_standard_args(zstd CONFIG_MODE)
else()
find_package(PkgConfig QUIET)
2022-12-16 07:29:31 +13:00
pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd)
2022-12-05 08:53:13 +13:00
find_package_handle_standard_args(zstd
2022-12-07 05:31:52 +13:00
REQUIRED_VARS ZSTD_LINK_LIBRARIES
VERSION_VAR ZSTD_VERSION
2022-12-05 08:53:13 +13:00
)
2022-11-06 01:58:44 +13:00
endif()
2022-12-07 05:31:52 +13: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()