Files
eden/CMakeModules/Findzstd.cmake
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
654 B
CMake
Raw Normal View History

2022-07-28 16:44:52 +02:00
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project
2022-05-15 02:06:02 +02:00
# SPDX-License-Identifier: GPL-2.0-or-later
2020-05-08 15:09:29 -06:00
2022-11-25 19:35:46 +01:00
include(FindPackageHandleStandardArgs)
2020-05-08 15:09:29 -06:00
find_package(PkgConfig QUIET)
pkg_search_module(ZSTD QUIET IMPORTED_TARGET libzstd)
find_package_handle_standard_args(zstd
REQUIRED_VARS ZSTD_LINK_LIBRARIES
VERSION_VAR ZSTD_VERSION
)
2022-12-06 04:17:44 +01: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()