summaryrefslogtreecommitdiff
path: root/users/drashna/rules.mk
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-11-29 07:42:34 +0000
committerQMK Bot <hello@qmk.fm>2021-11-29 07:42:34 +0000
commit4461355cce04750f021d0351939a35b1f7fdf5d5 (patch)
treef293723bb02256e5d7c35568b44db8fab09c092f /users/drashna/rules.mk
parentccc2030beee932c1de855f663890b028820cc2da (diff)
parent5b5b36421a7c887aad5bf5faef06dcf133d64f15 (diff)
Merge remote-tracking branch 'origin/master' into develop
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