From deef3f1add1f422bf103b62c1c89b217e86d9b51 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Thu, 4 Dec 2025 21:46:19 -0300 Subject: [PATCH] [video_core] bring the CMake change from dynarmic CMake * as crueter wrote "weird quirk of system installs" Signed-off-by: Caio Oliveira --- src/video_core/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 94599532b3..daaf00fcf1 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -390,4 +390,9 @@ if (ANDROID AND ARCHITECTURE_arm64) target_link_libraries(video_core PRIVATE adrenotools) endif() +# weird quirk of system installs +if (TARGET unordered_dense::unordered_dense) + target_link_libraries(video_core PRIVATE unordered_dense::unordered_dense) +endif() + create_target_directory_groups(video_core)