summaryrefslogtreecommitdiff
path: root/users/drashna/rules.mk
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-11-28 23:41:59 -0800
committerGitHub <noreply@github.com>2021-11-28 23:41:59 -0800
commit5b5b36421a7c887aad5bf5faef06dcf133d64f15 (patch)
tree166ec88bd74110261682d82cd1a4ee43ab0802be /users/drashna/rules.mk
parent4ee33f1ffd921d4691207c5c3ab8c12742ddc12d (diff)
[Keymap] Unicode and cursor sync - drashna keymap (#15328)
Diffstat (limited to 'users/drashna/rules.mk')
-rw-r--r--users/drashna/rules.mk12
1 files changed, 11 insertions, 1 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk
index e9911979c7..bd661e00a5 100644
--- a/users/drashna/rules.mk
+++ b/users/drashna/rules.mk
@@ -18,8 +18,18 @@ ifneq ($(strip $(NO_SECRETS)), yes)
endif
endif
+CUSTOM_UNICODE_ENABLE ?= yes
+ifeq ($(strip $(CUSTOM_UNICODE_ENABLE)), yes)
+ UNICODE_ENABLE = no
+ UNICODEMAP_ENABLE = no
+ UCIS_ENABLE = no
+ UNICODE_COMMON = yes
+ OPT_DEFS += -DCUSTOM_UNICODE_ENABLE
+ SRC += unicoooode.c
+endif
+
CUSTOM_TAP_DANCE ?= yes
-ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
+ifeq ($(strip $(CUSTOM_TAP_DANCE)), yes)
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
SRC += $(USER_PATH)/tap_dances.c
endif