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

29 lines
867 B
CMake
Raw 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)
if (zstd_FOUND)
find_package_handle_standard_args(zstd CONFIG_MODE)
else()
find_package(PkgConfig QUIET)
if (PKG_CONFIG_FOUND)
2022-12-07 05:31:52 +13:00
pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd)
2022-11-06 01:58:44 +13:00
endif()
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()