Merge pull request #101 from negativeExponent/patch-1
android: Fix build
This commit is contained in:
commit
685a495d5c
|
@ -4,6 +4,7 @@ LIBRETRO_DIR := $(CORE_DIR)/libretro
|
||||||
|
|
||||||
FRONTEND_SUPPORTS_RGB565 := 1
|
FRONTEND_SUPPORTS_RGB565 := 1
|
||||||
TILED_RENDERING := 1
|
TILED_RENDERING := 1
|
||||||
|
NO_LINK := 1
|
||||||
|
|
||||||
include $(LIBRETRO_DIR)/Makefile.common
|
include $(LIBRETRO_DIR)/Makefile.common
|
||||||
|
|
||||||
|
@ -18,6 +19,10 @@ ifneq ($(CURRENT_COMMIT),$(TAG_COMMIT))
|
||||||
COREFLAGS += -DGIT_COMMIT=\"$(CURRENT_COMMIT)\"
|
COREFLAGS += -DGIT_COMMIT=\"$(CURRENT_COMMIT)\"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(NO_LINK), 1)
|
||||||
|
COREFLAGS += -DNO_LINK
|
||||||
|
endif
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
LOCAL_MODULE := retro
|
LOCAL_MODULE := retro
|
||||||
LOCAL_SRC_FILES := $(SOURCES_CXX)
|
LOCAL_SRC_FILES := $(SOURCES_CXX)
|
||||||
|
|
Loading…
Reference in New Issue