6 changed files with 49 additions and 52 deletions
-
18externals/find-modules/FindOpus.cmake
-
9externals/find-modules/Findenet.cmake
-
9externals/find-modules/Findhttplib.cmake
-
9externals/find-modules/Findinih.cmake
-
28externals/find-modules/Findlz4.cmake
-
28externals/find-modules/Findzstd.cmake
@ -1,19 +1,17 @@ |
|||||
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project |
# SPDX-FileCopyrightText: 2022 yuzu Emulator Project |
||||
# SPDX-License-Identifier: GPL-2.0-or-later |
# SPDX-License-Identifier: GPL-2.0-or-later |
||||
|
|
||||
find_package(PkgConfig) |
|
||||
|
|
||||
|
find_package(PkgConfig QUIET) |
||||
if (PKG_CONFIG_FOUND) |
if (PKG_CONFIG_FOUND) |
||||
pkg_search_module(opus IMPORTED_TARGET GLOBAL opus) |
|
||||
if (opus_FOUND) |
|
||||
add_library(Opus::opus ALIAS PkgConfig::opus) |
|
||||
endif() |
|
||||
|
pkg_search_module(OPUS QUIET IMPORTED_TARGET opus) |
||||
endif() |
endif() |
||||
|
|
||||
include(FindPackageHandleStandardArgs) |
include(FindPackageHandleStandardArgs) |
||||
find_package_handle_standard_args(Opus |
find_package_handle_standard_args(Opus |
||||
REQUIRED_VARS |
|
||||
opus_LINK_LIBRARIES |
|
||||
opus_FOUND |
|
||||
VERSION_VAR opus_VERSION |
|
||||
|
REQUIRED_VARS OPUS_LINK_LIBRARIES |
||||
|
VERSION_VAR OPUS_VERSION |
||||
) |
) |
||||
|
|
||||
|
if (Opus_FOUND AND NOT TARGET Opus::opus) |
||||
|
add_library(Opus::opus ALIAS PkgConfig::OPUS) |
||||
|
endif() |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue