yuzu/externals/find-modules/Findzstd.cmake

27 lines
836 B
CMake
Raw Normal View History

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