Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-01-20 19:51:01 +0300
committerGitHub <noreply@github.com>2021-01-20 19:51:01 +0300
commitd0ed33e7100aac0b0335e412d78fe1e8261f51d3 (patch)
treeb0e60739b09a43677434f7ef934e8e6d41030f37 /applications/applications.mk
parent8f9b2513ffdda4afd9a3bce1906183bf8c5a8622 (diff)
GUI module example: 2 button dialog (#308)
* GUI: reusable module example
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index d79926c0..a7dd5645 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -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