diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-10 02:27:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-10 02:27:02 -0700 |
commit | 1063e0be483c59d0d3f31eb62ef888e00bdaee7d (patch) | |
tree | c32c479a59ad290f5c0db86a19e39a4f9a0fa95a /src | |
parent | b04877dd952d7da11647f16626952d7325e4e900 (diff) | |
parent | 5096ed5e0ab91254a29a58234d1df71b4065745f (diff) |
Merge pull request #6172 from degasus/cmake_opus
externals: Search for shared opus installation.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 0c1f5b0c8..167ee13f3 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -673,7 +673,7 @@ endif() create_target_directory_groups(core) target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) -target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls opus zip) +target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus zip) if (YUZU_ENABLE_BOXCAT) target_compile_definitions(core PRIVATE -DYUZU_ENABLE_BOXCAT) |