diff options
| author | 2022-12-28 17:21:31 -0500 | |
|---|---|---|
| committer | 2022-12-28 17:21:31 -0500 | |
| commit | 3c2aa183a1618a6e8ec2977741b35f11f0a97a6d (patch) | |
| tree | e0264a4999e4fd79c3762f22d47d1162a2dc48ce | |
| parent | cmake: make room server optional (diff) | |
| download | yuzu-3c2aa183a1618a6e8ec2977741b35f11f0a97a6d.tar.gz yuzu-3c2aa183a1618a6e8ec2977741b35f11f0a97a6d.tar.xz yuzu-3c2aa183a1618a6e8ec2977741b35f11f0a97a6d.zip | |
cmake: ignore missing package finders for packages with submodule fallbacks
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a454baa74..6a124db07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -215,24 +215,24 @@ find_package(ZLIB 1.2 REQUIRED) | |||
| 215 | find_package(zstd 1.5 REQUIRED) | 215 | find_package(zstd 1.5 REQUIRED) |
| 216 | 216 | ||
| 217 | if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) | 217 | if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) |
| 218 | find_package(xbyak 6) | 218 | find_package(xbyak 6 QUIET) |
| 219 | endif() | 219 | endif() |
| 220 | 220 | ||
| 221 | if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) | 221 | if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) |
| 222 | find_package(dynarmic 6.4.0) | 222 | find_package(dynarmic 6.4.0 QUIET) |
| 223 | endif() | 223 | endif() |
| 224 | 224 | ||
| 225 | if (ENABLE_CUBEB) | 225 | if (ENABLE_CUBEB) |
| 226 | find_package(cubeb) | 226 | find_package(cubeb QUIET) |
| 227 | endif() | 227 | endif() |
| 228 | 228 | ||
| 229 | if (USE_DISCORD_PRESENCE) | 229 | if (USE_DISCORD_PRESENCE) |
| 230 | find_package(DiscordRPC) | 230 | find_package(DiscordRPC QUIET) |
| 231 | endif() | 231 | endif() |
| 232 | 232 | ||
| 233 | if (ENABLE_WEB_SERVICE) | 233 | if (ENABLE_WEB_SERVICE) |
| 234 | find_package(cpp-jwt 1.4) | 234 | find_package(cpp-jwt 1.4 QUIET) |
| 235 | find_package(httplib 0.11) | 235 | find_package(httplib 0.11 QUIET) |
| 236 | endif() | 236 | endif() |
| 237 | 237 | ||
| 238 | if (YUZU_TESTS) | 238 | if (YUZU_TESTS) |