Browse Source

fix mingw

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

6
CMakeLists.txt

@ -128,7 +128,11 @@ if (YUZU_STATIC_BUILD)
set(YUZU_STATIC_SUFFIX _static)
## some libraries use CMAKE_IMPORT_LIBRARY_SUFFIX e.g. Harfbuzz ##
set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a;.tbd;.dylib")
if (APPLE)
set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a;.tbd;.dylib")
else()
set(CMAKE_IMPORT_LIBRARY_SUFFIX ".a")
endif()
## certain libraries need extra static libs to be linked ##
macro(extra_libs)

Loading…
Cancel
Save