GUI module example: 2 button dialog (#308)

* GUI: reusable module example
This commit is contained in:
あく
2021-01-20 19:51:01 +03:00
committed by GitHub
parent 8f9b2513ff
commit d0ed33e710
7 changed files with 305 additions and 3 deletions

View File

@@ -305,6 +305,7 @@ APP_GUI ?= 0
ifeq ($(APP_GUI), 1)
CFLAGS += -DAPP_GUI
C_SOURCES += $(wildcard $(APP_DIR)/gui/*.c)
C_SOURCES += $(wildcard $(APP_DIR)/gui/modules/*.c)
C_SOURCES += $(wildcard $(APP_DIR)/backlight-control/*.c)
endif