This commit is contained in:
Pablo Martínez 2025-07-16 10:20:32 -07:00 committed by GitHub
commit d26eb5ad30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -287,3 +287,11 @@ endif
ifeq ($(strip $(QUANTUM_PAINTER_LVGL_INTEGRATION)), yes)
include $(QUANTUM_DIR)/painter/lvgl/rules.mk
endif
# add every keyboard-, keymap-, or user- level fonts and images
QP_DIRS := $(KEYBOARD_PATHS) $(KEYMAP_PATH) $(USER_PATH)
QP_FONTS := $(foreach dir,$(QP_DIRS),$(wildcard $(dir)/painter/fonts/*.qff.c))
QP_IMGS := $(foreach dir,$(QP_DIRS),$(wildcard $(dir)/painter/images/*.qgf.c))
SRC += $(QP_FONTS) $(QP_IMGS)
# TODO: generate a header file (with CLI) which includes all the headers found