[ion/3ds] Modified the build system to work with epsilon master

This commit is contained in:
M4x1m3
2020-04-19 14:20:28 +02:00
parent f7609e0001
commit e8740edb04

View File

@@ -11,5 +11,16 @@ ion_src += $(addprefix ion/src/simulator/3ds/, \
driver/display.cpp \
)
# Remove the dummy diplay (re-implemented)
ion_src := $(filter-out addprefix ion/src/shared/dummy/display.cpp,$(ion_src))
sdl_simu_needs_to_be_removed += $(addprefix ion/src/simulator/shared/, \
dummy/display.cpp \
display.cpp:-headless \
events_keyboard.cpp:-headless \
framebuffer_base.cpp \
keyboard_sdl.cpp:-headless \
main_sdl.cpp:-headless \
layout.cpp:-headless \
)
# Remove the dummy diplay (re-implemented) and the SDL simulator stuff.
ion_src := $(filter-out $(sdl_simu_needs_to_be_removed),$(ion_src))