Switch to libretro-common

This commit is contained in:
meepingsnesroms
2018-10-18 17:50:41 -07:00
parent 8de8a3ecdd
commit 9799b6ecc4
18 changed files with 3331 additions and 27 deletions

View File

@@ -4,6 +4,10 @@ COREDEFINES =
INCFLAGS := -I$(LIBRETRO_COMM_DIR)/include
ifeq ($(DEBUG), 1)
COREDEFINES += -DEMU_DEBUG -DEMU_SANDBOX
endif
ifneq (,$(findstring msvc2003,$(platform)))
INCFLAGS += -I$(LIBRETRO_COMM_DIR)/include/compat/msvc
endif
@@ -12,4 +16,9 @@ include $(EMU_PATH)/makefile.all
SOURCES_C := $(CORE_DIR)/libretro.c \
$(CORE_DIR)/cursors.c \
$(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.c \
$(LIBRETRO_COMM_DIR)/compat/compat_strl.c \
$(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \
$(LIBRETRO_COMM_DIR)/file/file_path.c \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(EMU_SOURCES_C)