Libretro needs core staticly linked even on Android

This commit is contained in:
Aaron Kling 2018-03-28 18:16:56 -05:00
parent 01be9ff8cf
commit 955652cc35

View File

@ -145,10 +145,13 @@ if(LIBRETRO)
endif()
if(ANDROID)
set(CoreLibName ppsspp_jni)
set(CoreLinkType SHARED)
set(MOBILE_DEVICE ON)
set(USING_GLES2 ON)
endif()
if(ANDROID AND NOT LIBRETRO)
set(CoreLibName ppsspp_jni)
set(CoreLinkType SHARED)
else()
set(CoreLibName Core)
set(CoreLinkType STATIC)