From 4d1b7097390d6a7f3f2b204731ae6a989f9c505a Mon Sep 17 00:00:00 2001 From: crueter Date: Thu, 26 Mar 2026 03:02:28 -0400 Subject: [PATCH] fix libs Signed-off-by: crueter --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7b9a2fcd9..a65a66ac95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -482,9 +482,10 @@ endfunction() # Put these BEFORE EXTERNALS or Boost WILL die # ============================================= if (APPLE) - set(_libs Carbon Metal Cocoa IOKit CoreVideo CoreMedia Security) if (IOS) - list(APPEND _libs objc) + set(_libs Metal IOKit CoreVideo CoreMedia Security) + else() + set(_libs Carbon Metal Cocoa IOKit CoreVideo CoreMedia Security) endif() foreach(fw ${_libs}) find_library(${fw}_LIBRARY ${fw} REQUIRED)