mirror of https://github.com/stella-emu/stella.git
libretro: android: Fix jni source paths (#921)
Change-Id: Ic580fee9833b4110ddcead0033e8106871b22241
This commit is contained in:
parent
fc0a8c91a8
commit
c64277346a
|
@ -1,8 +1,8 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
CORE_DIR := $(LOCAL_PATH)/../..
|
||||
CORE_DIR := $(LOCAL_PATH)/../../..
|
||||
|
||||
include $(CORE_DIR)/libretro/Makefile.common
|
||||
include $(CORE_DIR)/os/libretro/Makefile.common
|
||||
|
||||
COREFLAGS := -DANDROID -D__LIB_RETRO__ -DHAVE_STRINGS_H -DSOUND_SUPPORT $(INCFLAGS)
|
||||
|
||||
|
@ -15,5 +15,5 @@ include $(CLEAR_VARS)
|
|||
LOCAL_MODULE := retro
|
||||
LOCAL_SRC_FILES := $(SOURCES_CXX) $(SOURCES_C)
|
||||
LOCAL_CXXFLAGS := $(COREFLAGS) -std=c++17
|
||||
LOCAL_LDFLAGS := -Wl,-version-script=$(CORE_DIR)/libretro/link.T
|
||||
LOCAL_LDFLAGS := -Wl,-version-script=$(CORE_DIR)/os/libretro/link.T
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
|
Loading…
Reference in New Issue