Merge pull request #16515 from rf2222222/libretro_ios_compile

Libretro: ios compile settings
This commit is contained in:
Henrik Rydgård 2022-12-09 11:52:11 +01:00 committed by GitHub
commit 2a1daccd22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -1316,6 +1316,10 @@ if(ANDROID)
endif()
endif()
if (IOS)
set(nativeExtra ${nativeExtra} ${NativeAppSource})
endif()
add_library(native STATIC
${nativeExtra}
Common/Render/Text/draw_text_qt.cpp

View File

@ -22,6 +22,10 @@ if(ANDROID)
endif()
if(NOT MSVC)
target_link_libraries(ppsspp_libretro "-Wl,-Bsymbolic")
if (IOS)
target_link_libraries(ppsspp_libretro "-Wl")
else()
target_link_libraries(ppsspp_libretro "-Wl,-Bsymbolic")
endif()
endif()
target_link_libraries(ppsspp_libretro ${LinkCommon})