diff options
| author | Alexandre Bouvier <contact@amb.tf> | 2022-12-06 04:17:44 +0100 |
|---|---|---|
| committer | Alexandre Bouvier <contact@amb.tf> | 2022-12-06 05:32:09 +0100 |
| commit | bb3440f7c46a3a2478f63bf9609202e5996d100d (patch) | |
| tree | 7848141f5798efac8d17f67c0b9987576ba07c39 /externals/find-modules/FindOpus.cmake | |
| parent | 7c68f93bdf77bf5d4944998b47b88fd875d2298a (diff) | |
cmake: correct find modules
Diffstat (limited to 'externals/find-modules/FindOpus.cmake')
| -rw-r--r-- | externals/find-modules/FindOpus.cmake | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/externals/find-modules/FindOpus.cmake b/externals/find-modules/FindOpus.cmake index b68a6046b..2ba515352 100644 --- a/externals/find-modules/FindOpus.cmake +++ b/externals/find-modules/FindOpus.cmake @@ -1,19 +1,17 @@ # SPDX-FileCopyrightText: 2022 yuzu Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -find_package(PkgConfig) - +find_package(PkgConfig QUIET) 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() include(FindPackageHandleStandardArgs) 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() |
