From d09ff7b5835b962e2de332c7963b3e6f18828cc2 Mon Sep 17 00:00:00 2001 From: crueter Date: Mon, 10 Nov 2025 20:49:29 -0500 Subject: [PATCH] only use .a on macos Signed-off-by: crueter --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34a05edf74..5053c7c952 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -128,11 +128,7 @@ if (YUZU_STATIC_BUILD) set(YUZU_STATIC_SUFFIX _static) ## some libraries use CMAKE_IMPORT_LIBRARY_SUFFIX e.g. Harfbuzz ## - if (APPLE) - set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a;.tbd;.dylib") - else() - set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a") - endif() + set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a") ## certain libraries need extra static libs to be linked ## macro(extra_libs)