diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-10-16 15:49:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-16 15:49:45 -0400 |
commit | 52d7f7d2770a35adf0b0b0c803e05ae8719f539f (patch) | |
tree | fc9c02090ef86489ba99c2c1618f1da1c334c28a /build_keyboard.mk | |
parent | 5e2b843538365b130a73054bbeff6009cb8d818c (diff) | |
parent | 932705706edc22774d89fb94ebad9ffe690a270c (diff) |
Merge pull request #815 from priyadi/unicode_map
Allow unicode up to 0xFFFFF using separate mapping table
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r-- | build_keyboard.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index 03a69b1464..282adcb118 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -153,6 +153,11 @@ ifeq ($(strip $(UCIS_ENABLE)), yes) UNICODE_ENABLE = yes endif +ifeq ($(strip $(UNICODEMAP_ENABLE)), yes) + OPT_DEFS += -DUNICODEMAP_ENABLE + UNICODE_ENABLE = yes +endif + ifeq ($(strip $(UNICODE_ENABLE)), yes) OPT_DEFS += -DUNICODE_ENABLE SRC += $(QUANTUM_DIR)/process_keycode/process_unicode.c |