From f39e985434c6349ffe2661ab674485dd8e0d8646 Mon Sep 17 00:00:00 2001 From: crueter Date: Tue, 2 Jun 2026 21:40:51 +0200 Subject: [PATCH] [cmake] Link to `UniformTypeIdentifiers` framework on macOS (#4046) Needed for local LLVM builds Signed-off-by: crueter Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4046 Reviewed-by: Lizzie Reviewed-by: MaranBr --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c797261488..e89eb4a999 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -512,7 +512,7 @@ endfunction() # ============================================= if (APPLE) - foreach(fw Carbon Metal Cocoa IOKit CoreVideo CoreMedia Security) + foreach(fw Carbon Metal Cocoa IOKit CoreVideo CoreMedia Security UniformTypeIdentifiers) find_library(${fw}_LIBRARY ${fw} REQUIRED) list(APPEND PLATFORM_LIBRARIES ${${fw}_LIBRARY}) endforeach()