Browse Source

only use .a on macos

Signed-off-by: crueter <crueter@eden-emu.dev>
pull/2994/head
crueter 4 months ago
parent
commit
d09ff7b583
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 6
      CMakeLists.txt

6
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)

Loading…
Cancel
Save