Merge pull request #101 from negativeExponent/patch-1

android: Fix build
This commit is contained in:
Autechre 2021-05-23 03:16:04 +02:00 committed by GitHub
commit 685a495d5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,7 @@ LIBRETRO_DIR := $(CORE_DIR)/libretro
FRONTEND_SUPPORTS_RGB565 := 1
TILED_RENDERING := 1
NO_LINK := 1
include $(LIBRETRO_DIR)/Makefile.common
@ -18,6 +19,10 @@ ifneq ($(CURRENT_COMMIT),$(TAG_COMMIT))
COREFLAGS += -DGIT_COMMIT=\"$(CURRENT_COMMIT)\"
endif
ifeq ($(NO_LINK), 1)
COREFLAGS += -DNO_LINK
endif
include $(CLEAR_VARS)
LOCAL_MODULE := retro
LOCAL_SRC_FILES := $(SOURCES_CXX)