initial github.com/kethen/aemu_postoffice integration ported from github.com/kethen/aemu

This commit is contained in:
Katharine Chui
2026-01-09 22:56:16 +01:00
parent b648243e1e
commit bf30de1527
32 changed files with 2887 additions and 99 deletions
+16
View File
@@ -692,6 +692,22 @@ SOURCES_CXX += \
$(EXTDIR)/libadrenotools/lib/linkernsbypass/elf_soname_patcher.cpp
endif
SOURCES_C += \
$(EXTDIR)/aemu_postoffice/client/postoffice.c
ifeq ($(PLATFORM_EXT), win32)
SOURCES_C += \
$(EXTDIR)/aemu_postoffice/client/delay_impl_windows.c \
$(EXTDIR)/aemu_postoffice/client/sock_impl_windows.c \
$(EXTDIR)/aemu_postoffice/client/mutex_impl_windows.c
else
SOURCES_C += \
$(EXTDIR)/aemu_postoffice/client/delay_impl_linux.c \
$(EXTDIR)/aemu_postoffice/client/sock_impl_linux.c \
$(EXTDIR)/aemu_postoffice/client/mutex_impl_linux.c
endif
SOURCES_CXX += \
$(COMMONDIR)/Render/Text/draw_text.cpp \
$(EXTDIR)/jpge/jpgd.cpp \