From 7677ace5ea9a23138a2359fee43f560c38dd7b8e Mon Sep 17 00:00:00 2001 From: merry Date: Wed, 10 May 2023 14:42:20 +0100 Subject: [PATCH] CMakeLists: Find tsl-robin-map package (#6517) --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 576cc57e4..a6192abed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,6 +274,10 @@ if (ENABLE_FDK) message(FATAL_ERROR "fdk_aac library not found.") endif() endif() + +# Use system tsl::robin_map if available (otherwise we fallback to version bundled with dynarmic) +find_package(tsl-robin-map QUIET) + # Platform-specific library requirements # ======================================