diff --git a/src/app/emu/emu.cmake b/src/app/emu/emu.cmake index c25511e5..c326ff87 100644 --- a/src/app/emu/emu.cmake +++ b/src/app/emu/emu.cmake @@ -11,6 +11,11 @@ add_executable( ${IMGUI_SRC} ) +if (APPLE) + list(APPEND YAZE_APP_CORE_SRC + app/core/platform/app_delegate.mm) +endif() + target_include_directories( yaze_emu PUBLIC lib/ diff --git a/src/app/emu/snes.h b/src/app/emu/snes.h index 261dfa70..6b01c671 100644 --- a/src/app/emu/snes.h +++ b/src/app/emu/snes.h @@ -2,17 +2,12 @@ #define YAZE_APP_EMU_SNES_H #include -#include -#include -#include #include "app/emu/audio/apu.h" -#include "app/emu/audio/spc700.h" #include "app/emu/cpu/clock.h" #include "app/emu/cpu/cpu.h" #include "app/emu/memory/memory.h" #include "app/emu/video/ppu.h" -#include "app/rom.h" namespace yaze { namespace app { @@ -139,4 +134,4 @@ class SNES { } // namespace app } // namespace yaze -#endif // YAZE_APP_EMU_SNES_H \ No newline at end of file +#endif // YAZE_APP_EMU_SNES_H