Files
eden/CMakeModules/Findlz4.cmake
T

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

27 lines
772 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
2022-11-25 19:35:46 +01:00
find_package(lz4 QUIET CONFIG)
if (lz4_CONSIDERED_CONFIGS)
2022-11-25 19:35:46 +01:00
find_package_handle_standard_args(lz4 CONFIG_MODE)
else()
find_package(PkgConfig QUIET)
2022-12-14 09:30:31 +01:00
pkg_search_module(LZ4 QUIET IMPORTED_TARGET liblz4)
2022-11-25 19:35:46 +01:00
find_package_handle_standard_args(lz4
2022-12-06 04:17:44 +01:00
REQUIRED_VARS LZ4_LINK_LIBRARIES
VERSION_VAR LZ4_VERSION
2022-11-25 19:35:46 +01:00
)
2020-05-08 15:09:29 -06:00
endif()
2022-12-06 04:17:44 +01:00
if (lz4_FOUND AND NOT TARGET lz4::lz4)
if (TARGET LZ4::lz4_shared)
add_library(lz4::lz4 ALIAS LZ4::lz4_shared)
elseif (TARGET LZ4::lz4_static)
add_library(lz4::lz4 ALIAS LZ4::lz4_static)
else()
add_library(lz4::lz4 ALIAS PkgConfig::LZ4)
endif()
endif()