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:
authorAlbert Kharisov <ah@bright-box.com>2021-05-19 12:43:15 +0300
committerGitHub <noreply@github.com>2021-05-19 12:43:15 +0300
commit4fa49882e0e4b9588073764e228909130bd847be (patch)
tree3ec3b373e7c2c7959b929dfa5f5e33d7c392e714 /applications/applications.mk
parentf5f9a04fdad7e09ede033f94b3eb77560ffefe2f (diff)
[FL-1286] Add vertical screen orientation (#472)
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 3694ab41..d009fcf2 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -43,6 +43,7 @@ APP_EXAMPLE_UART_WRITE = 1
APP_EXAMPLE_INPUT_DUMP = 1
APP_UNIT_TESTS = 1
APP_IRDA_MONITOR = 1
+APP_VERTICAL_SCREEN = 1
endif
SRV_DOLPHIN ?= 0
@@ -76,6 +77,11 @@ SRV_GUI = 1
CFLAGS += -DAPP_MENU
endif
+APP_VERTICAL_SCREEN ?= 0
+ifeq ($(APP_VERTICAL_SCREEN), 1)
+CFLAGS += -DAPP_VERTICAL_SCREEN
+endif
+
APP_IRDA_MONITOR ?= 0
ifeq ($(APP_IRDA_MONITOR), 1)
CFLAGS += -DAPP_IRDA_MONITOR