refactor: split login screen implementation

This commit is contained in:
2026-04-02 15:29:06 +02:00
parent 9626b79b69
commit 8bbe31e390
7 changed files with 1140 additions and 1033 deletions
+8 -1
View File
@@ -66,7 +66,14 @@ LDFLAGS := \
# ---- Source files ----
SRCS := main.cpp stb_truetype_impl.cpp font_data.cpp
SRCS := \
main.cpp \
login_shared.cpp \
login_wallpaper.cpp \
login_render.cpp \
login_input.cpp \
stb_truetype_impl.cpp \
font_data.cpp
OBJS := $(addprefix $(OBJDIR)/,$(SRCS:.cpp=.o))
DEPS := $(OBJS:.o=.d)