mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-27 19:51:48 +01:00
Merge pull request #271 from vadosnaprimer/cpuhook
Enable CPU hooking in libretro makefiles
This commit is contained in:
commit
1cda68dd30
@ -3,6 +3,7 @@ LOGSOUND = 0
|
|||||||
FRONTEND_SUPPORTS_RGB565 = 1
|
FRONTEND_SUPPORTS_RGB565 = 1
|
||||||
HAVE_CHD = 1
|
HAVE_CHD = 1
|
||||||
HAVE_SYS_PARAM = 1
|
HAVE_SYS_PARAM = 1
|
||||||
|
HOOK_CPU = 0
|
||||||
|
|
||||||
CORE_DIR := .
|
CORE_DIR := .
|
||||||
|
|
||||||
|
@ -16,6 +16,11 @@ ifneq (,$(findstring msvc2003,$(platform)))
|
|||||||
INCFLAGS += -I$(LIBRETRO_COMM_DIR)/include/compat/msvc
|
INCFLAGS += -I$(LIBRETRO_COMM_DIR)/include/compat/msvc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(HOOK_CPU), 1)
|
||||||
|
GENPLUS_SRC_DIR += $(CORE_DIR)/core/debug
|
||||||
|
FLAGS += -DHOOK_CPU
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(HAVE_CHD), 1)
|
ifeq ($(HAVE_CHD), 1)
|
||||||
INCFLAGS += -I$(CHDLIBDIR)/src \
|
INCFLAGS += -I$(CHDLIBDIR)/src \
|
||||||
-I$(CHDLIBDIR)/deps/libFLAC/include \
|
-I$(CHDLIBDIR)/deps/libFLAC/include \
|
||||||
|
Loading…
Reference in New Issue
Block a user