mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-14 04:24:31 +00:00
8648c27cbb
Since 3.25 introduced `LINUX` and `BSD`, use them, and standardize other platforms to that style Signed-off-by: crueter <crueter@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4183 Reviewed-by: Samuel <lizzie@eden-emu.dev> Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
35 lines
945 B
CMake
35 lines
945 B
CMake
# SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package(lz4 QUIET CONFIG)
|
|
if (lz4_CONSIDERED_CONFIGS)
|
|
find_package_handle_standard_args(lz4 CONFIG_MODE)
|
|
else()
|
|
find_package(PkgConfig QUIET)
|
|
pkg_search_module(LZ4 QUIET IMPORTED_TARGET liblz4)
|
|
|
|
if (MSYS2)
|
|
FixMsysPath(PkgConfig::LZ4)
|
|
endif()
|
|
|
|
find_package_handle_standard_args(lz4
|
|
REQUIRED_VARS LZ4_LINK_LIBRARIES
|
|
VERSION_VAR LZ4_VERSION
|
|
)
|
|
endif()
|
|
|
|
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()
|