diff options
| author | 2022-08-01 12:31:31 +0200 | |
|---|---|---|
| committer | 2022-08-01 12:31:31 +0200 | |
| commit | adc8c03fe463c9c0aaa2cfcbc502bc65dc7b99b6 (patch) | |
| tree | fcfa229ec1ace9288611d04c84508594becb763c /externals/find-modules | |
| parent | build: simplify find modules (diff) | |
| download | yuzu-adc8c03fe463c9c0aaa2cfcbc502bc65dc7b99b6.tar.gz yuzu-adc8c03fe463c9c0aaa2cfcbc502bc65dc7b99b6.tar.xz yuzu-adc8c03fe463c9c0aaa2cfcbc502bc65dc7b99b6.zip | |
build(externals): rename Findopus to FindOpus
This better matches upstream's FindOpus.cmake file, and it will make
using upstream's FindOpus.cmake file easier.
Diffstat (limited to 'externals/find-modules')
| -rw-r--r-- | externals/find-modules/FindOpus.cmake (renamed from externals/find-modules/Findopus.cmake) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/find-modules/Findopus.cmake b/externals/find-modules/FindOpus.cmake index 4ebf9ef7b..b68a6046b 100644 --- a/externals/find-modules/Findopus.cmake +++ b/externals/find-modules/FindOpus.cmake | |||
| @@ -6,12 +6,12 @@ find_package(PkgConfig) | |||
| 6 | if (PKG_CONFIG_FOUND) | 6 | if (PKG_CONFIG_FOUND) |
| 7 | pkg_search_module(opus IMPORTED_TARGET GLOBAL opus) | 7 | pkg_search_module(opus IMPORTED_TARGET GLOBAL opus) |
| 8 | if (opus_FOUND) | 8 | if (opus_FOUND) |
| 9 | add_library(Opus::Opus ALIAS PkgConfig::opus) | 9 | add_library(Opus::opus ALIAS PkgConfig::opus) |
| 10 | endif() | 10 | endif() |
| 11 | endif() | 11 | endif() |
| 12 | 12 | ||
| 13 | include(FindPackageHandleStandardArgs) | 13 | include(FindPackageHandleStandardArgs) |
| 14 | find_package_handle_standard_args(opus | 14 | find_package_handle_standard_args(Opus |
| 15 | REQUIRED_VARS | 15 | REQUIRED_VARS |
| 16 | opus_LINK_LIBRARIES | 16 | opus_LINK_LIBRARIES |
| 17 | opus_FOUND | 17 | opus_FOUND |